TextBoxActiveXControl.IsEditable

TextBoxActiveXControl.IsEditable property

Indicates whether the user can type into the control.

public bool IsEditable { get; set; }

Examples

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

See Also