Table of Contents

Property ColumnSpan

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

ColumnSpan

Gets or sets the number of joining columns the dialog box item is allowed to occupy.

public int ColumnSpan { get; set; }

Property Value

int

The number of joining columns the dialog box item is allowed to occupy.

Examples

UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.TextBox;
blockItem.Column = 1;
blockItem.ColumnSpan = 2;

uibDialogBox1.AppendBlock(blockItem);