Table of contents

EnumTextFilterMode

  • Android
  • Objective-C
  • Swift
public class EnumTextFilterMode {
    public static final int TFM_AUTO = 1;
    public static final int TFM_GENERAL_CONTOUR = 2;
    public static final int TFM_SKIP = 0;
}
typedef NS_ENUM(NSInteger, EnumTextFilterMode)
{
    /** Not supported yet. */
    EnumTextFilterModeAuto = 0x01,
    /** Filters text using the general algorithm based on contour. Check @ref TFM for available argument settings.*/
    EnumTextFilterModeGeneralContour = 0x02,
    /** Skips text filtering. */
    EnumTextFilterModeSkip = 0x00
};
public enum EnumTextFilterMode : Int{
    /** Not supported yet. */
    auto = 0x01
    /** Filters text using the general algorithm based on contour. Check @ref TFM for available argument settings.*/
    generalContour = 0x02
    /** Skips text filtering. */
    skip = 0x00
}

Is this page helpful?

YesYes NoNo