Property RowSpan
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
RowSpan
Gets or sets the number of joining rows the dialog box item is allowed to occupy.
public int RowSpan { get; set; }
Property Value
- int
The number of joining rows the dialog box item is allowed to occupy.
Examples
UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.TextBox;
blockItem.Row = 2; blockItem.RowSpan = 2;
uibDialogBox1.AppendBlock(blockItem);