ImageGear .NET v25.2 - Updated
ImageGear.OCR Assembly / ImageGear.OCR Namespace / ImGearOCRSettings Class / DefaultFilter Property




In This Topic
    DefaultFilter Property
    In This Topic
    Gets or sets character set filter used for zones whose filter is DEFAULT.
    Syntax
    'Declaration
     
    Public Property DefaultFilter As ImGearOCRFilter
    'Usage
     
    Dim instance As ImGearOCRSettings
    Dim value As ImGearOCRFilter
     
    instance.DefaultFilter = value
     
    value = instance.DefaultFilter
    public ImGearOCRFilter DefaultFilter {get; set;}
    public: __property ImGearOCRFilter get_DefaultFilter();
    public: __property void set_DefaultFilter( 
       ImGearOCRFilter value
    );
    public:
    property ImGearOCRFilter DefaultFilter {
       ImGearOCRFilter get();
       void set (    ImGearOCRFilter value);
    }

    Property Value

    ImGearOCRFilter enumeration value.
    Remarks
    This property specifies a Global filter, i.e. a Character Set filter to be applied globally, at page level. If this property is not set by the integrating application after the recognition engine initialization, the value ALL is applied, i.e. the Language environment will not be filtered globally. The Global filter setting is applied to all zones with DEFAULT in their ImGearOCRZone.Filter property.

    The default value is ImGearOCRFilter.ALL.

    This property is deprecated. Please use UserCharacterSet.

    See Also