Table of Contents

Property TooltipText

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

TooltipText

Gets or sets the text of the tooltip for a component of an interactive Automation script.

public string TooltipText { get; set; }

Property Value

string

The text of the tooltip for a component of an interactive Automation script.

Remarks

This tooltip is only displayed if the script is run within one of the DataMiner web apps, for example the Jobs app.

Available from DataMiner 10.0.8 onwards.

UIBlockDefinition label3 = new UIBlockDefinition();
  label3.Type = UIBlockType.StaticText;
  label3.Text = "Drop-down no filter";
  label3.Row = 2;
  label3.Column = 0;
  uib.AppendBlock(label3);
  UIBlockDefinition input3 = new UIBlockDefinition();
  input3.Type = UIBlockType.DropDown;
  input3.AddDropDownOption("1|Option 1");
  input3.AddDropDownOption("2|Option 2");
  input3.AddDropDownOption("3|Option 3");
  input3.ValidationState = UIValidationState.Invalid;
  input3.ValidationText = "Validation message...";
  input3.IsRequired = true;
  input3.Height = 400;
  input3.PlaceholderText = "Placeholder message...";
  input3.InitialValue = "2";
  input3.Row = 2;
  input3.Column = 1;
  input3.TooltipText = "drop-down no filter - tooltip text";
  uib.AppendBlock(input3);