Share

ParseOption

C++

enum ParseOption {
  kParseOptionNone = 0,
  kSetDefaultFormat = (0x1 << 0),
  kPreserveMtextFormat = (0x1 << 1),
  kConvertTextToValue = (0x1 << 2),
  kChangeDataType = (0x1 << 3),
  kParseTextForFieldCode = (0x1 << 4)
};

File

AcValue.h

Members

Members Description
kParseOptionNone Use default parsing.
kSetDefaultFormat Assign default format based on the data type of the parsed value.
kPreserveMtextFormat Preserve MText format in the current format string if the text to be parsed does not have MText format. If the text has MText format then it will override the MText format in the current format string.
kConvertTextToValue Converts text to a value of appropriate data type, if possible
kChangeDataType Change a datatype
kParseTextForFieldCode Looks for field code in text, and if found, sets the text as field.

Description

This enumeration describes the parsing options for the value.

Was this information helpful?