Method MatrixGetFollowMode
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
MatrixGetFollowMode(int, int)
Gets a value indicating whether "follow mode" is enabled on the specified matrix output.
bool MatrixGetFollowMode(int pid, int index)
Parameters
Returns
- bool
trueif the "follow mode" is enabled on the specified matrix output; otherwise,false.
MatrixGetFollowMode(int, string)
Gets a value indicating whether "follow mode" is enabled on the specified matrix output.
bool MatrixGetFollowMode(int pid, string outputLabel)
Parameters
Returns
- bool
trueif the "follow mode" is enabled on the specified matrix output; otherwise,false.
MatrixGetFollowMode(string, string)
Gets a value indicating whether "follow mode" is enabled on the specified matrix output.
note
Please use an overload that takes the parameter ID instead to prevent issues in case the parameter Description changes.
[Obsolete("Use overloads with parameter ID instead of name.")]
bool MatrixGetFollowMode(string parameterName, string outputLabel)
Parameters
Returns
- bool
trueif the "follow mode" is enabled on the specified matrix output; otherwise,false.
Remarks
The specified value for the parameterName argument should be the value of the Description tag of the parameter and not the value of the Name tag.
MatrixGetFollowMode(string, int)
Gets a value indicating whether "follow mode" is enabled on the specified matrix output.
note
Please use an overload that takes the parameter ID instead to prevent issues in case the parameter Description changes.
[Obsolete("Use overloads with parameter ID instead of name.")]
bool MatrixGetFollowMode(string parameterName, int index)
Parameters
Returns
- bool
trueif the "follow mode" is enabled on the specified matrix output; otherwise,false.
Remarks
The specified value for the parameterName argument should be the value of the Description tag of the parameter and not the value of the Name tag.
index must be in the range 1..nrOfOutputs.