This data type is used within the L_SvgSortOptions structure to control the text extraction mode.
enum L_SvgExtractText
{
L_SvgExtractText_Character = 0,
L_SvgExtractText_Word = 1 << 0,
L_SvgExtractText_Line = 1 << 1,
L_SvgExtractText_ExactBounds = 1 << 2,
};
typedef enum L_SvgExtractText L_SvgExtractText;
Default. Extract the text one character at a time.
Extract the text one word at a time.
Extract the text one line at a time.
Extract the text character's exact bounds, without any internal or external leading.
Text extraction mode.
Value for L_SvgSortOptions.ExtractText.