FONTFLAGS

typedef enum
{
      FONT_ITALIC = 0x001, 
      FONT_BOLD = 0x002, 
      FONT_UNDERLINE = 0x004, 
      FONT_SUBSCRIPT = 0x008, 
      FONT_SUPERSCRIPT = 0x010, 
      FONT_SANSSERIF = 0x020, 
      FONT_SERIF = 0x040, 
      FONT_PROPORTIONAL = 0x080, 
} FONT_DEFINE;

The FONT_DEFINE enumerated type represents the possible fonts.

Value

Meaning

FONT_ITALIC

The character is italic.

FONT_BOLD

The character is bold.

FONT_UNDERLINE

The character is underlined.

FONT_SUBSCRIPT

The character is subscript.

FONT_SUPERSCRIPT

The character is superscript.

FONT_SANSSERIF

The character is Sans Serif.

FONT_SERIF

The character is Serif.

FONT_PROPORTIONAL

The character is proportional.

Comments

This enumerated type is used by the following object:

ILTRecognizedCharacters