Table of Contents

Property Row

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

Row

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

public int Row { get; set; }

Property Value

int

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

Examples

UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.TextBox;
blockItem.Row = 2; // Text box situated in third row from the top.

uibDialogBox1.AppendBlock(blockItem);