System::Globalization::NumberStyles enum
Contents
[
Hide
]NumberStyles enum
Number style allowed when parsing.
enum class NumberStyles : int32_t
Values
Name | Value | Description |
---|---|---|
None | 0 | No non-digit symbols. |
AllowLeadingWhite | 1 | Allow leading whitespaces. |
AllowTrailingWhite | 2 | Allow trailing whitespaces. |
AllowLeadingSign | 4 | Allow leading sign. |
Integer | n/a | Default integer formatting. |
AllowTrailingSign | 8 | Allow trailing sign. |
AllowParentheses | 16 | Allow parenthesis for negative values. |
AllowDecimalPoint | 32 | Allow decimal point. |
AllowThousands | 64 | Allow group separators. |
Number | n/a | Default composite number format. |
AllowExponent | 128 | Allow exponent sign. |
Float | n/a | Default floating point number format. |
AllowCurrencySymbol | 256 | Allow currency symbol. |
Currency | n/a | Default currency format. |
Any | n/a | Allow any format specifier. |
AllowHexSpecifier | 512 | Allow hexadecimal numbers. |
HexNumber | n/a | Default hexadecimal number format. |
See Also
- Namespace System::Globalization
- Library Aspose.PDF for C++