ComponentOne Input for WinForms
NumberStyleFlags Enumeration

C1.Win.C1Input.4 Assembly > C1.Win.C1Input Namespace : NumberStyleFlags Enumeration
Used by ParseInfo.NumberStyle property.
Syntax
'Declaration
 
Public Enum NumberStyleFlags 
   Inherits System.Enum
public enum NumberStyleFlags : System.Enum 
Members
MemberDescription
AllowCurrencySymbolIndicates that the numeric string is parsed as currency if it contains a currency symbol; otherwise, it is parsed as a number.
AllowDecimalPointIndicates that the numeric string can have a decimal point.
AllowExponentIndicates that the numeric string can be in exponential notation.
AllowHexSpecifierIndicates that the numeric string can have notation that signifies that the number is hexadecimal.
AllowLeadingSignIndicates that the numeric string can have a leading sign.
AllowLeadingWhiteIndicates that a leading white-space character is ignored during parsing.
AllowParenthesesIndicates that the numeric string can have one pair of parentheses enclosing the number.
AllowThousandsIndicates that the numeric string can have group separators.
AllowTrailingSignIndicates that the numeric string can have a trailing sign.
AllowTrailingWhiteIndicates that trailing white-space character must be ignored during parsing.
AnyIndicates that all the AllowXXX bit styles are used.
CurrencyIndicates all styles except AllowExponent and AllowHexSpecifier.
FloatIndicates that the AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign, AllowDecimalPoint, and AllowExponent styles are used.
HexNumberIndicates that the AllowLeadingWhite, AllowTrailingWhite, and AllowHexSpecifier styles are used.
IntegerIndicates that the AllowLeadingWhite, AllowTrailingWhite, and AllowLeadingSign styles are used.
NoneIndicates that none of the bit styles are allowed.
NumberIndicates that the AllowLeadingWhite, AllowTrailingWhite, AllowLeadingSign, AllowTrailingSign, AllowDecimalPoint, and AllowThousands styles are used.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         C1.Win.C1Input.NumberStyleFlags

See Also

Reference

C1.Win.C1Input Namespace