Table of Contents

Method MatrixSetOutputLabel

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

MatrixSetOutputLabel(int, string, string)

Sets the label of the specified matrix output.

void MatrixSetOutputLabel(int pid, string oldName, string newName)

Parameters

pid int

The ID of the matrix parameter.

oldName string

The label of the output.

newName string

The new output label.

MatrixSetOutputLabel(int, int, string)

Sets the label of the specified matrix output.

void MatrixSetOutputLabel(int pid, int index, string newName)

Parameters

pid int

The ID of the matrix parameter.

index int

The index of the output.

newName string

The new output label.

MatrixSetOutputLabel(string, string, string)

Sets the label 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 MatrixSetOutputLabel(string parameterName, string oldName, string newName)

Parameters

parameterName string

The name of the matrix parameter.

oldName string

The label of the output.

newName string

The new output label.

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.

MatrixSetOutputLabel(string, int, string)

Sets the label 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 MatrixSetOutputLabel(string parameterName, int index, string newName)

Parameters

parameterName string

The name of the matrix parameter.

index int

The index of the output.

newName string

The new output label.

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.