'Declaration Public Enum NumberStyleFlags Inherits System.Enum
public enum NumberStyleFlags : System.Enum
'Declaration Public Enum NumberStyleFlags Inherits System.Enum
public enum NumberStyleFlags : System.Enum
Member | Description |
---|---|
AllowCurrencySymbol | Indicates that the numeric string is parsed as currency if it contains a currency symbol; otherwise, it is parsed as a number. |
AllowDecimalPoint | Indicates that the numeric string can have a decimal point. |
AllowExponent | Indicates that the numeric string can be in exponential notation. |
AllowHexSpecifier | Indicates that the numeric string can have notation that signifies that the number is hexadecimal. |
AllowLeadingSign | Indicates that the numeric string can have a leading sign. |
AllowLeadingWhite | Indicates that a leading white-space character is ignored during parsing. |
AllowParentheses | Indicates that the numeric string can have one pair of parentheses enclosing the number. |
AllowThousands | Indicates that the numeric string can have group separators. |
AllowTrailingSign | Indicates that the numeric string can have a trailing sign. |
AllowTrailingWhite | Indicates that trailing white-space character must be ignored during parsing. |
Any | Indicates that all the AllowXXX bit styles are used. |
Currency | Indicates all styles except AllowExponent and AllowHexSpecifier. |
Float | Indicates that the AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign, AllowDecimalPoint, and AllowExponent styles are used. |
HexNumber | Indicates that the AllowLeadingWhite, AllowTrailingWhite, and AllowHexSpecifier styles are used. |
Integer | Indicates that the AllowLeadingWhite, AllowTrailingWhite, and AllowLeadingSign styles are used. |
None | Indicates that none of the bit styles are allowed. |
Number | Indicates that the AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign, AllowTrailingSign, AllowDecimalPoint, and AllowThousands styles are used. |
System.Object
System.ValueType
System.Enum
C1.Win.C1Input.NumberStyleFlags