Property IsMultiline
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
IsMultiline
Gets or sets a value indicating whether users are able to enter multiple lines of text.
public bool IsMultiline { get; set; }
Property Value
- bool
true
if users are able to enter multiple lines of text; otherwise,false
.
Examples
UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.TextBox;
blockItem.IsMultiline = true;
uibDialogBox1.AppendBlock(blockItem);
Remarks
Applicable only when Type is set to TextBox.