Table of Contents

Method MatrixGetInputLabel

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

MatrixGetInputLabel(int, int)

Gets the label of the specified matrix input.

string MatrixGetInputLabel(int pid, int index)

Parameters

pid int

The ID of the matrix parameter.

index int

The index of the input.

Returns

string

The label of the specified matrix input.

Remarks

index must be in the range 1..nrOfInputs.

MatrixGetInputLabel(string, int)

Gets the label of the specified matrix input.

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.")]
string MatrixGetInputLabel(string parameterName, int index)

Parameters

parameterName string

The name of the matrix parameter.

index int

The index of the input.

Returns

string

The label of the specified matrix input.

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..nrOfInputs.