Method MatrixSetFollowMaster
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
MatrixSetFollowMaster(int, string, string)
Configures a slave output to follow a master output on the specified matrix.
void MatrixSetFollowMaster(int pid, string masterLabel, string slaveLabel)
Parameters
pidintThe ID of the matrix parameter.
masterLabelstringThe label of the master output.
slaveLabelstringThe label of the slave output.
MatrixSetFollowMaster(int, int, int)
Configures a slave output to follow a master output on the specified matrix.
void MatrixSetFollowMaster(int pid, int master, int slave)
Parameters
pidintThe ID of the matrix parameter.
masterintThe index of the master output.
slaveintThe index of the slave output.
MatrixSetFollowMaster(string, string, string)
Configures a slave output to follow a master output on the specified matrix.
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 MatrixSetFollowMaster(string parameterName, string masterLabel, string slaveLabel)
Parameters
parameterNamestringThe name of the matrix parameter.
masterLabelstringThe label of the master output.
slaveLabelstringThe label of the slave output.
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.
MatrixSetFollowMaster(string, int, int)
Configures a slave output to follow a master output on the specified matrix.
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 MatrixSetFollowMaster(string parameterName, int master, int slave)
Parameters
parameterNamestringThe name of the matrix parameter.
masterintThe index of the master output.
slaveintThe index of the slave output.
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.
master must be in the range 1..nrOfOutputs.
slave must be in the range 1..nrOfOutputs.