TextBoxActiveXControl.IsAutoWordSelected

TextBoxActiveXControl.IsAutoWordSelected property

Specifies the basic unit used to extend a selection. True specifies that the basic unit is a single character. false specifies that the basic unit is a whole word.

public virtual bool IsAutoWordSelected { get; set; }

Examples

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

See Also