TextBoxActiveXControl.IsAutoTab

TextBoxActiveXControl.IsAutoTab property

Indicates whether the focus will automatically move to the next control when the user enters the maximum number of characters.

public bool IsAutoTab { get; set; }

Examples

[C#]
if(!activeXControl.IsAutoTab)
{
    activeXControl.IsAutoTab = true;
}

See Also