Skip to main content
Version: 3.5

TextBoxType

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Specifies the type of <input> element to display.

public enum TextBoxType : Enum

Fields

NameDescription
ButtonDefines a push button with no default behavior.
CheckboxDefines a check box allowing single values to be selected/deselected.
ColorDefines a color picker.
DateDefines a date control (year, month and day - no time).
DatetimeLocalDefines a date and time control (year, month, day, hour, minute, second, and fraction of a second (no time zone).
EmailDefines a field for an e-mail address.
MonthDefines a month and year control (no time zone).
NumberDefines a field for entering a number.
PasswordDefines a password field (characters are masked).
RadioDefines a radio button, allowing a single value to be selected out of multiple choices.
RangeDefines a control for entering a number whose exact value is not important (like a slider control). Default range is from 0 to 100.
SearchDefines a text field for entering a search string.
TelDefines a field for entering a telephone number.
TextDefault. Defines a single-line text field (default width is 20 characters).
TimeDefines a control for entering a time (no time zone).
UrlDefines a field for entering a URL.
WeekDefines a week and year control (no time zone).

Used By

NameDescription
InputType.TypeSpecifies the type of <input> element to display. See https://www.w3schools.com/tags/att_input_type.asp.