[]
Selects a standard format pattern for the InputNumericBox.
public enum InputNumberFormat
Name | Description |
---|---|
Currency | The number is converted to a string that represents a currency amount. |
Custom | The number is converted to a string using the custom format pattern. |
Decimal | The number is converted to a string of decimal digits (0-9), prefixed by a minus sign if the number is negative. |
FixedPoint | The number is converted to a string of the form "-ddddd.ddd…". |
General | The number is converted to the most compact of either fixed-point or scientific notation. |
Hexadecimal | The number is converted to a string of hexadecimal digits. |
Number | The number is converted to a string of the form "-d,ddd,ddd.ddddd…". |
Percent | The number is converted to a string that represents a percent. |
Scientific | The number is converted to exponential format, such as "-1.234e+15". |