TextBoxMode Enumeration
Specifies the behavior mode of the text box.
Assembly: System.Web (in System.Web.dll)
| Member name | Description | |
|---|---|---|
| Color | Represents color entry mode. | |
| Date | Represents date entry mode. | |
| DateTime | Represents date-time entry mode. | |
| DateTimeLocal | Represents local date-time entry mode. | |
| Represents email address entry mode. | ||
| Month | Represents month entry mode. | |
| MultiLine | Represents multiline entry mode. | |
| Number | Represents number entry mode. | |
| Password | Represents password entry mode. | |
| Phone | Represents phone number entry mode. | |
| Range | Represents numeric range entry mode. | |
| Search | Represents search string entry mode. | |
| SingleLine | Represents single-line entry mode. | |
| Time | Represents time entry mode. | |
| Url | Represents URL entry mode. | |
| Week | Represents week entry mode. |
The TextBoxMode enumeration represents the different display options for TextBox controls.
SingleLine mode displays the TextBox control as a single row. If the user enters text that exceeds the physical size of the TextBox control, the text will scroll horizontally.
MultiLine mode displays the height of the TextBox based on the Rows property, and allows data entry on multiple lines. The text will automatically wrap if the Wrap property is set to true. If the user enters text that exceeds the physical size of the TextBox, the text will scroll accordingly and scroll bars will appear.
The behavior of Password mode is similar to SingleLine mode except that all characters entered in the TextBox control are masked and are not saved in view state.
The remaining options correspond to type attribute values for the input element in the HTML5 specification.
| Topic | Location |
|---|---|
| How to: Set a TextBox Web Server Control for Password Entry | Building ASP .NET Web Applications |
| How to: Set a TextBox Web Server Control for Password Entry | Building ASP .NET Web Applications |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.