Description
This control has been available since version 2011.00-a.
It was designed as entry field bound to a text format (specified in the property “Mask”).
Specific properties
In addition to common properties contains the following properties:
- Mask: using the following character you can determine the type of mask to be included on the form:
X:It indicates that in this location can be entered any character
9:It indicates that in this location can be entered only a number
A:It indicates that in this location can be entered only a letter
N:It indicates that in this location can be entered only a letter or a number
NOTE: Any other characters entered in the format will be inserted in the field and will not be editable by the user.
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.
For more information read here.
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