Description
The “Numeric Field” is designed to be able to insert a number or currency amount (or phone number).
Specific properties
In addition to common properties contains the following properties:
- Picture
specify the format in which you want a number is displayed on the form;
in particular it is possible to define or not the thousands separator displaying and specify the number of decimals.Examples of valid formats are as follows:
999, 999.99
99,999,999N.B. From release 2013 there is the DecimalPlaces property, about the number of decimals chosen.
Specific events
- ChangeEvent
event activated when change the value of the field. Can be used to
– assign other fields based on the value inserted into the field
– check the validity of the inserted value giving a message to the user.
Properties that can be used by code
C/S Properties
- Enabled: If is False, the field is no editable (the description of the name becomes gray).
- Value: If is True, returns the text contained in the object.
- Visible: if is True, the field is visible on the form, otherwise assign it with False.
Web properties
- Enabled: If is False, the field is no editable (the description of the name becomes gray).
- Value: If is True, returns the text contained in the object.
- Visible: if is True, the field is visible on the form, otherwise assign it with False.
Methods that can be used by code
None