C1.Win.InputPanel.8 Assembly / C1.Win.InputPanel Namespace / InputNumberFormat Enumeration

InputNumberFormat Enumeration
Selects a standard format pattern for the InputNumericBox.
Syntax
'Declaration
 
Public Enum InputNumberFormat 
   Inherits System.Enum
 
Members
MemberDescription
CurrencyThe number is converted to a string that represents a currency amount.
CustomThe number is converted to a string using the custom format pattern.
DecimalThe number is converted to a string of decimal digits (0-9), prefixed by a minus sign if the number is negative.
FixedPointThe number is converted to a string of the form "-ddddd.ddd…".
GeneralThe number is converted to the most compact of either fixed-point or scientific notation.
HexadecimalThe number is converted to a string of hexadecimal digits.
NumberThe number is converted to a string of the form "-d,ddd,ddd.ddddd…".
PercentThe number is converted to a string that represents a percent.
ScientificThe number is converted to exponential format, such as "-1.234e+15".
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         C1.Win.InputPanel.InputNumberFormat

See Also