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