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