TextBox.MaxLength Property

Definition

Gets or sets the value that specifies the maximum number of characters allowed for user input.

public:
 property int MaxLength { int get(); void set(int value); };
int MaxLength();

void MaxLength(int value);
public int MaxLength { get; set; }
var int32 = textBox.maxLength;
textBox.maxLength = int32;
Public Property MaxLength As Integer
<TextBox MaxLength="int"/>

Property Value

Int32

int

The maximum number of characters allowed for user input. The default is 0 (no limit).

Remarks

A MaxLength value of 0 specifies that there is no limit on the number of characters allowed for user input.

Applies to