Property Text
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
Text
Gets or sets the text that has to appear in the dialog box item.
public string Text { get; set; }
Property Value
- string
The text that has to appear in the dialog box item.
Examples
Applicable only when Type is set to Button or StaticText.
UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.Button;
blockItem.Row = 2; blockItem.Text = "OK";
uibDialogBox1.AppendBlock(blockItem);