RadioButtonActiveXControl.IsWordWrapped

RadioButtonActiveXControl.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 == false)
{
    activeXControl.IsWordWrapped = true;
}

See Also