CHARFLAGS

typedef enum
{
   CHAR_ENDOFLINE = 0x001, 
   CHAR_ENDOFPARA = 0x002, 
   CHAR_ENDOFWORD = 0x004, 
   CHAR_ENDOFZONE = 0x008, 
   CHAR_ENDOFPAGE = 0x010, 
   CHAR_ENDOFCELL = 0x020, 
} CHARFLAGS;

The CHARFLAGS enumerated type represents possible locations of a recognized character.

Value

Meaning

CHAR_ENDOFLINE

This is the last character in a line.

CHAR_ENDOFPARA

This is the last character in a paragraph.

CHAR_ENDOFWORD

This is the last character in a word.

CHAR_ENDOFZONE

This is the last character in a zone.

CHAR_ENDOFPAGE

This is the last character in a page.

CHAR_ENDOFCELL

This is the last character in a cell. (This is applicable only for ZONE_TYPE_TABLE zones.)

Comments

This enumerated type is used by the following object:

ILTRecognizedCharacters