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