TextBoxActiveXControl.MaxLength

TextBoxActiveXControl.MaxLength property

Gets and sets the maximum number of characters

public int MaxLength { get; set; }

Examples

[C#]
if(activeXControl.MaxLength == 0)
{
    activeXControl.MaxLength = 30;
}

See Also