This data type is used within the L_SvgTextData structure to indicate position information about a character in SVG text.
enum
{
L_SvgTextCharacterFlags_None = 0,
L_SvgTextCharacterFlags_EndOfWord = 1 << 0,
L_SvgTextCharacterFlags_EndOfLine = 1 << 1,
L_SvgTextCharacterFlags_LineBreak = 1 << 2,
L_SvgTextCharacterFlags_FromOcr = 1 << 3,
};
typedef L_UINT L_SvgTextCharacterFlags;
None.
This is the last character in a word.
This is the last character in a line.
This is the last character in a line (Including paragraph's end of line).
The characters were obtained through OCR.
Text character position flags.
Value for L_SvgTextData.CharacterFlags. These values can be ORed together.