This page presents the TextBox Control, with its two variations, the Numeric TextBox and the MaskedTextBox.
On this page:
Table of Contents | ||||
---|---|---|---|---|
|
Requirements
This component is Portable. It runs both on Windows and on Web Pages hosted in any platform.
Configuration
After dragging and dropping the component into the Drawing area, double-click it to open the graphical element configuration window.
Default TextBox
For the regular text box, we have:
TextBox configuration | |
---|---|
Field | Description |
Control Name | Defines a name for the control so it can be accessed in the CodeBehind script. See Display Code Behind. |
Value | The Tag that will receive the value selected. |
Label | The label that will be shown in the text box. |
AutoComplete | Enable auto complete. |
FloatLabel | Options for enable the float (never, auto, always). |
Type | Text, password, email. |
ShowClearButton | Enable clear button. |
MultiLine | Enable Multi line |
ReadOnly | Enable Read Only mode. |
Masked TextBox
MaskedTextBox properties | |
---|---|
Control name | MaskedTextBox name. |
Value | The Tag that will receive the value selected. |
Mask | Insert a mask for the input text. |
Label | Enter your text. |
Numeric TextBox
NumericTextBox properties | |
---|---|
Control name | Numeric Text Box name. |
Value | The Tag that will receive the value selected. |
Label | Enter your value. |
FloatLabel |
|
Format | |
Min | The minimum value in the input. |
Max | The maximum value in the input. |
Step | The step when using the arrows of the component. |
ReadOnly | CheckBox to enable ReadOnly. |
Runtime Execution
When users type into a text box, the application captures and processes the input. This control supports data entry, allowing users to input commands, notes, or setpoint values. The application then uses this data for various purposes, such as diagnostics, maintenance logs, or operational adjustments, facilitating user interaction and data management.
In this section:
Page Tree | ||||
---|---|---|---|---|
|