Table of Contents

Property Height

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

Height

Gets or sets the fixed height (in pixels) of the dialog box item.

public int Height { get; set; }

Property Value

int

The fixed height (in pixels) of the dialog box item.

Examples

UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.TextBox;
blockItem.Height = 100;

uibDialogBox1.AppendBlock(blockItem);

Remarks

To make sure the dialog box can be displayed optimally, we advise to use a minimum and maximum height instead of a fixed height (see MaxHeight and MinHeight).