Table of Contents

Property Value

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

Value

Gets the value of the script parameter.

public string Value { get; }

Property Value

string

The value of the script parameter.

Examples

// Retrieving the value by using the parameter ID.
ScriptParam paramUser = engine.GetScriptParam(65000);
string userDescription = paramUser.Value;