Property Extra
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
Extra
Gets or sets the ID of the parameter that has to be displayed in the dialog box item.
public string Extra { get; set; }
Property Value
- string
The ID of the parameter that has to be displayed in the dialog box item.
Examples
UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.Parameter;
blockItem.Extra = "7/253:83";
uibDialogBox1.AppendBlock(blockItem);
Remarks
Applicable only when Type is set to Parameter or Numeric.
For a dialog box item of type Numeric, this property allows to have a checkbox with multiple discrete values. In case multiple discrete values are defined, separate these with a semicolon (';'). If you do not want any checkbox, but only the numeric box, then leave this property empty.
For a dialog box item of type Parameter, the ID syntax is as follows: DmaID/ElementID:ParamID[:index]