| TextBoxIsMultiline Property |
Gets a value indicating whether this text box is a multi-line text box that accepts ENTER
keys to create new lines.
Namespace: DigitalRune.Game.UI.ControlsAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax public bool IsMultiline { get; }
Public ReadOnly Property IsMultiline As Boolean
Get
public:
property bool IsMultiline {
bool get ();
}
member IsMultiline : bool with get
Property Value
Type:
Boolean if this text box is multi-line text box that accepts ENTER keys to
create new lines; otherwise,
.
Remarks
A text box is a multi-line text box if
MaxLines is greater than 1.
See Also