Table of Contents

Method MatrixGetOutputLockMode

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

MatrixGetOutputLockMode(int, string)

Gets a value indicating whether the specified matrix output is locked.

bool MatrixGetOutputLockMode(int pid, string outputLabel)

Parameters

pid int

The ID of the matrix parameter.

outputLabel string

The label of the matrix output.

Returns

bool

true if the specified matrix output is locked; otherwise, false.

MatrixGetOutputLockMode(int, int)

Gets a value indicating whether the specified matrix output is locked.

bool MatrixGetOutputLockMode(int pid, int index)

Parameters

pid int

The ID of the matrix parameter.

index int

The index of the matrix output.

Returns

bool

true if the specified matrix output is locked; otherwise, false.

MatrixGetOutputLockMode(string, string)

Gets a value indicating whether the specified matrix output is locked.

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 MatrixGetOutputLockMode(string parameterName, string outputLabel)

Parameters

parameterName string

The name of the matrix parameter.

outputLabel string

The label of the matrix output.

Returns

bool

true if the specified matrix output is locked; 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.

MatrixGetOutputLockMode(string, int)

Gets a value indicating whether the specified matrix output is locked.

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 MatrixGetOutputLockMode(string parameterName, int index)

Parameters

parameterName string

The name of the matrix parameter.

index int

The index of the matrix output.

Returns

bool

true if the specified matrix output is locked; 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.