TextBoxActiveXControl.IntegralHeight

TextBoxActiveXControl.IntegralHeight property

Indicates whether the control will only show complete lines of text without showing any partial lines.

public bool IntegralHeight { get; set; }

Examples

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

See Also