Table of Contents

Property Column

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

Column

Gets or sets the zero-based index of the column in which the dialog box item has to be placed.

public int Column { get; set; }

Property Value

int

The zero-based index of the column in which the dialog box item has to be placed.

Examples

UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.TextBox;
blockItem.Column = 1; // Text box positioned in second column from the left.

uibDialogBox1.AppendBlock(blockItem);