TextBoxActiveXControl.IsWordWrapped

TextBoxActiveXControl.IsWordWrapped property

Indicates whether the contents of the control automatically wrap at the end of a line.

public bool IsWordWrapped { get; set; }

Examples

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

See Also