TextBoxActiveXControl.HideSelection

TextBoxActiveXControl.HideSelection property

Indicates whether selected text in the control appears highlighted when the control does not have focus.

public bool HideSelection { get; set; }

Examples

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

See Also