Class UIVariables.VisualOverview
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLNetTypes.dll
Defines visual overview UI variables. This class allows you to pass script (output) values and convert these to Visual Overview session variables.
public static class UIVariables.VisualOverview
- Inheritance
-
UIVariables.VisualOverview
Examples
engine.AddScriptOutput(UIVariables.VisualOverview.ClosingWindow_Result, ClosingMode.Continue.ToString());
// The following call will create a session variable in Visual Overview named MyOutput which has the value 'MyValue'.
engine.AddScriptOutput(UIVariables.VisualOverview.CreateKey("MyOutput"), "MyValue");
Remarks
Available from DataMiner 10.0.13 (RN 27895) onwards.
- This only works when the Automation script has been executed in Visual Overview and the script has been executed successfully.
- The option SessionVariablePrefix is linked with this feature, which means it is possible to store 2 different values from the same script. For instance: 2 pages, each having a script that results in Script session variable 'MyPage'. Prefix 'One_' is used on the first page and 'Two_' is used as prefix. This will result in session variables 'One_MyPage' and 'Two_MyPage' if the script is executed successfully on both pages.
Properties
- ClosingWindow_Message
Gets the closing window message.
- ClosingWindow_Result
Gets the closing window result.
- Prefix
Gets the prefix.
Methods
- CreateKey(string)
Creates a key by combining the prefix with the specified variable name.