Table of Contents

Method MatrixStopBeingMaster

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

MatrixStopBeingMaster(int, string)

Stops the specified matrix output from being a master output.

void MatrixStopBeingMaster(int pid, string masterLabel)

Parameters

pid int

The ID of the matrix parameter.

masterLabel string

The label of the master output.

MatrixStopBeingMaster(int, int)

Stops the specified matrix output from being a master output.

void MatrixStopBeingMaster(int pid, int master)

Parameters

pid int

The ID of the matrix parameter.

master int

The index of the master output.

MatrixStopBeingMaster(string, string)

Stops the specified matrix output from being a master 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 MatrixStopBeingMaster(string parameterName, string masterLabel)

Parameters

parameterName string

The name of the matrix parameter.

masterLabel string

The label of the master 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.

MatrixStopBeingMaster(string, int)

Stops the specified matrix output from being a master 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 MatrixStopBeingMaster(string parameterName, int master)

Parameters

parameterName string

The name of the matrix parameter.

master int

The index of the master 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.