TextBox.MaxLength Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.