[]
Used by C1TextBox.NumericInputKeys property.
[Flags]
[TypeConverter(typeof(NumericInputKeyConverter))]
public enum NumericInputKeyFlags
| Name | Description |
|---|---|
| All | This value is a combination of all enum values |
| Decimal | Indicates that Decimal key enters a decimal separator regardless of culture settings. |
| F2 | Indicates that F2 enters negative infinity (-Infinity). |
| F3 | Indicates that F3 enters positive infinity (+Infinity). |
| F4 | Indicates that F4 enters the "not a number" value (NaN). |
| F9 | Indicates that F9 toggles the sign of the displayed number. |
| Minus | Indicates that '-' makes the displayed number negative. |
| None | Indicates that none of the Input Keys are used. |
| Plus | Indicates that '+' makes the displayed number positive. |
| Standard | This value is a combination of the F9, Minus, Plus, Decimal, and X values. |
| X | Indicates that the X key starts entry of the exponent part in scientific-notation numbers. |