Type | Name | Description | Notes |
String | decimalPoint | Changes or returns the character for the decimal separator. The default value is `.' . | |
Boolean | floatMode | Sets the float mode to true or false . Returns true if the float mode is active. If the float mode is set, the number field represents a float number. | |
Double | floatValue | Sets or gets the value of the text field. If floatmode is not set when the value overflows the limits (see minFloat , maxFloat ), or if the value in the field is not a float, this property can not be accessed. | |
Int | intValue | Sets or returns the value of the text field. If floatmode is set or if the value overflows the limits (see minInt , maxInt ), this property can not be accessed. | |
Double | maxFloat | Sets or returns the maximum float value. This only works if floatmode is set. Note that the minimum and maximum values are tested when floatValue is accessed. | |
Int | maxInt | Sets or returns the maximum int value. This only works if floatmode is not set. Note that the minimum and maximum values are tested when intValue is accessed. | |
Double | minFloat | Sets or returns the minimum float value. This only works if floatmode is set. Note that the minimum and maximum values are tested when floatValue is accessed. | |
Int | minInt | Sets or returns the minimum int value. This only works if floatmode is not set. The minimum and maximum values are tested when intValue is accessed. | |
Boolean | padright | Gets or sets the padright mode. Use this mode to add the trailing zeros after the decimal point. This only works when the float mode is set. | |
UInt | precision | Sets or returns the precision of the floatValue when the mode floatMode is set. The meaning of precision depends on whether the mode scientific is set or not (see scientificMode ). The default value is 6. | |
Boolean | scientificMode | Gets or sets the scientific mode. This mode works only if floatMode is set. | |
Boolean | showPoint | Shows or hides the point separator. | |
Boolean | showThousand | Shows or hides the thousand separator. | |
String | thousandSeparator | Changes or returns the thousand separator. The default is `,' . This character is displayed only when the showThousand mode is set. | |