InputType
Wisej.Web.InputType
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Specifies the type, min, max, step, and mode properties to associate to the <input> element in a TextBox control. See https://www.w3schools.com/tags/att_input_type.asp.
public class InputType : ICloneablePublic Class InputType
Inherits ICloneableProperties
Max
String: Specifies the maximum value allowed. See https://www.w3schools.com/tags/att_input_type.asp. (Default: null)
Min
String: Specifies the minimum value allowed. See https://www.w3schools.com/tags/att_input_type.asp. (Default: null)
Mode
TextBoxMode: Specifies the type of data that might be entered by the user while editing the element or its contents. See https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode. (Default: Text)
Step
Nullable<Double>: Specifies the legal number intervals. See https://www.w3schools.com/tags/att_input_type.asp. (Default: null)
Type
TextBoxType: Specifies the type of <input> element to display. See https://www.w3schools.com/tags/att_input_type.asp. (Default: Text)
Last updated
Was this helpful?

