ClickPicker | Simulates a user click (main mouse button) on an icon to open a picker, setting the focus on the item and opening the picker form. |
Active | Indicates whether the item has the focus. Set the property as follows:
|
BackColor | Deprecated in UI API 2004. The property is supported for backward compatibility in the next two releases. Use Item.BackColor instead. |
ChooseFromListAlias | The database field by which to filter a ChooseFromList attached to the edit box.
When the user enters a value in the text box and then presses the tab key, the ChooseFromList dialog is displayed with only those rows where the value of the field specified in this property starts with the entered text. For example, if the ChooseFromList displays business partners and this property is set to CardCode, when the user enters A in the edit box and presses the tab key, the ChooseFromList is displayed with only rows where the code starts with an A. If this property is set to CardName, then the same action displays only rows where the name starts with an A. In either case, after the user selects a value, the key of the selected row is entered into the text box. |
ChooseFromListUID | The unique ID of the ChooseFromList object to attach with this item. |
DataBind | The DataBind object tied to this item. |
FontSize | Deprecated in UI API 2004. The property is supported for backward compatibility in the next two releases. Use Item.FontSize instead. |
ForeColor | Deprecated in UI API 2004. The property is supported for backward compatibility in the next two releases. Use Item.ForeColor instead. |
IsPassword | Specifies whether the input data is of the same look and feel as a password field.
The default value is false; setting it to true makes the EditText behaves like a password field. If you get the value of the EditText via UI API, the value returned is the real value of the field. |
Item | The item properties of the edit text. You can get the item that specifics the edit text, and set the item properties if necessary. |
PickerType | The picker type for this item. |
ScrollBars | Indicates whether the text box has a scroll bar. |
String | The text displayed in the textbox. |
SuppressZeros | Indicates whether to hide leading zeros as well as trailing zeros after a decimal point. |
TabOrder | The item's tab order, which can be any long integer equal to or greater than 0.
Tab order is the order in which form items get focus when the user presses the TAB key. Only items that can get focus can get a tab order value, for example, you cannot set a tab order for cells or columns. Two items can have the same tab order, in which case the order is not guaranteed. |
TextStyle | Deprecated in UI API 2004. The property is supported for backward compatibility in the next two releases. Use Item.TextStyle instead. |
Value | The value associated with the edit box, provided as a string. |
ChooseFromListAfter | The event occurs after the user makes a selection in the ChooseFromList form or chooses Cancel. |
ChooseFromListBefore | The event occurs before the ChooseFromList form is displayed. |
ClickAfter | The event occurs after the main mouse button was clicked. |
ClickBefore | The event occurs before the main mouse button was clicked. |
DoubleClickAfter | The event occurs after the main mouse button was double clicked. |
DoubleClickBefore | The event occurs before the main mouse button was double clicked. |
GotFocusAfter | GotFocusAfter |
KeyDownAfter | The event occurs after the key was pressed. |
KeyDownBefore | The event occurs before the key was pressed. |
LostFocusAfter | LostFocusAfter |
PickerClickedBefore | The event occurs before the Picker form is displayed. |
PressedAfter | The event occurs after the item was pressed, that is, a mouse is released within an item. |
PressedBefore | The event occurs before the item was pressed. |
ValidateAfter | An item lost focus and validation is required. The event occurs after the validation. |
ValidateBefore | An item lost focus and validation is required. The event occurs after the validation. |