Property MinHeight
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
MinHeight
Gets or sets the minimum height (in pixels) of the dialog box item.
public int MinHeight { get; set; }
Property Value
- int
The minimum height (in pixels) of the dialog box item.
Examples
UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.TextBox;
blockItem.MinHeight = 100;
uibDialogBox1.AppendBlock(blockItem);