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