Method MatrixSetFollowMode
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
MatrixSetFollowMode(int, int, bool)
Enables or disables the ‘follow mode’ of the specified matrix output.
void MatrixSetFollowMode(int pid, int index, bool mode)
Parameters
pidintThe ID of the matrix parameter.
indexintThe index of the output.
modebooltrueif ‘follow mode’ must be enabled; otherwise,false.
MatrixSetFollowMode(int, string, bool)
Enables or disables the ‘follow mode’ of the specified matrix output.
void MatrixSetFollowMode(int pid, string outputLabel, bool mode)
Parameters
pidintThe ID of the matrix parameter.
outputLabelstringThe label of the output.
modebooltrueif ‘follow mode’ must be enabled; otherwise,false.
MatrixSetFollowMode(string, int, bool)
Enables or disables the ‘follow mode’ of 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.")]
void MatrixSetFollowMode(string parameterName, int index, bool mode)
Parameters
parameterNamestringThe name of the matrix parameter.
indexintThe index of the output.
modebooltrueif ‘follow mode’ must be enabled; 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.
MatrixSetFollowMode(string, string, bool)
Enables or disables the ‘follow mode’ of 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.")]
void MatrixSetFollowMode(string parameterName, string outputLabel, bool mode)
Parameters
parameterNamestringThe name of the matrix parameter.
outputLabelstringThe label of the output.
modebooltrueif ‘follow mode’ must be enabled; 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.