Top   Module   Use   Manual   Index 

com :: sun :: star :: i18n ::

struct ParseResult


Description
Struct returned by XCharacterClassification::parseAnyToken and XCharacterClassification::parsePredefinedToken .


Elements

long LeadingWhiteSpace
Description
Count of ignored leading whitespace, in code points, not characters.
long EndPos
Description
Code point index of first unprocessed character.
long CharLen
Description
Number of characters (not code points) of the parsed token, not including leading whitespace.
double Value
Description
Value of token in case of numeric.
long TokenType
Description
KParseType token type like IDENTNAME.
long StartFlags
Description
KParseTokens flags of first character of actual token matched. If TokenType is a SINGLE_QUOTE_NAME or a DOUBLE_QUOTE_STRING the first character is the first character inside the quotes.
long ContFlags
Description
KParseTokens flags of remaining characters of actual token matched.
string DequotedNameOrString
Description
If a quoted name or string is encountered the dequoted result goes here.
Top of Page