ImageGear .NET v25.2 - Updated
ImageGear.OCR Assembly / ImageGear.OCR Namespace / ImGearOCRFontFlags Enumeration




In This Topic
    ImGearOCRFontFlags Enumeration
    In This Topic
    Provides information about the style and font weight of the a character.
    Syntax
    'Declaration
     
    <FlagsAttribute()>
    Public Enum ImGearOCRFontFlags 
       Inherits System.Enum
    'Usage
     
    Dim instance As ImGearOCRFontFlags
    [Flags()]
    public enum ImGearOCRFontFlags : System.Enum 
    [Flags()]
    __value public enum ImGearOCRFontFlags : public System.Enum 
    [Flags()]
    public enum class ImGearOCRFontFlags : public System.Enum 
    Members
    MemberValueDescription
    BOLD4Indicates that the relevant character is bold.
    ITALIC2Indicates that the relevant character is italic.
    MONOSPACED8Monospaced character. See also PROPORTIONAL.
    NONE0Default value. Indicates no font style information.
    PROPORTIONAL16Proportional character. It is not possible for both PROPORTIONAL and MONOSPACED to be set. If both are unset we do not know whether it is Monospaced or not.
    SANSSERIF64Sans Serif character. It is not possible for both SANSSERIF and SERIF to be set. If both are unset we do not know whether it is Serif or not.
    SERIF32Serif character. See also SANSSERIF.
    SPACED1Indicates that individual characters are separated by single spaces.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ImageGear.OCR.ImGearOCRFontFlags

    See Also