TextBoxType
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Specifies the type of <input> element to display.
- C#
- VB.NET
public enum TextBoxType : Enum
Public Enum TextBoxType As [Enum]
Fields
| Name | Description |
|---|---|
| Button | Defines a push button with no default behavior. |
| Checkbox | Defines a check box allowing single values to be selected/deselected. |
| Color | Defines a color picker. |
| Date | Defines a date control (year, month and day - no time). |
| DatetimeLocal | Defines a date and time control (year, month, day, hour, minute, second, and fraction of a second (no time zone). |
| Defines a field for an e-mail address. | |
| Month | Defines a month and year control (no time zone). |
| Number | Defines a field for entering a number. |
| Password | Defines a password field (characters are masked). |
| Radio | Defines a radio button, allowing a single value to be selected out of multiple choices. |
| Range | Defines a control for entering a number whose exact value is not important (like a slider control). Default range is from 0 to 100. |
| Search | Defines a text field for entering a search string. |
| Tel | Defines a field for entering a telephone number. |
| Text | Default. Defines a single-line text field (default width is 20 characters). |
| Time | Defines a control for entering a time (no time zone). |
| Url | Defines a field for entering a URL. |
| Week | Defines a week and year control (no time zone). |
Used By
| Name | Description |
|---|---|
| InputType.Type | Specifies the type of <input> element to display. See https://www.w3schools.com/tags/att_input_type.asp. |