# InputType

Namespace: **Wisej.Web**

Assembly: **Wisej.Framework** (4.0.0.0)

Specifies the type, min, max, step, and mode properties to associate to the \<input> element in a [TextBox](https://docs.wisej.com/api/wisej.web/editors/wisej.web.textbox) control. See <https://www.w3schools.com/tags/att\\_input\\_type.asp>.

{% tabs %}
{% tab title="C#" %}

```csharp
public class InputType : ICloneable
```

{% endtab %}

{% tab title="VB.NET" %}

```visual-basic
Public Class InputType
    Inherits ICloneable
```

{% endtab %}
{% endtabs %}

## Properties

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Max

[String](https://docs.microsoft.com/dotnet/api/system.string): Specifies the maximum value allowed. See <https://www.w3schools.com/tags/att\\_input\\_type.asp>. (Default: `null`)

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Min

[String](https://docs.microsoft.com/dotnet/api/system.string): Specifies the minimum value allowed. See <https://www.w3schools.com/tags/att\\_input\\_type.asp>. (Default: `null`)

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Mode

[TextBoxMode](https://docs.wisej.com/api/wisej.web/editors/wisej.web.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`)

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Step

[Nullable\<Double>](https://docs.microsoft.com/dotnet/api/system.nullable-1): Specifies the legal number intervals. See <https://www.w3schools.com/tags/att\\_input\\_type.asp>. (Default: `null`)

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Type

[TextBoxType](https://docs.wisej.com/api/wisej.web/editors/wisej.web.textboxtype): Specifies the type of \<input> element to display. See <https://www.w3schools.com/tags/att\\_input\\_type.asp>. (Default: `Text`)
