Method MatrixSetInputLabel
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
MatrixSetInputLabel(int, int, string)
Sets the label of the specified input.
void MatrixSetInputLabel(int pid, int index, string newName)
Parameters
pidintThe ID of the matrix parameter.
indexintThe index of the input.
newNamestringThe new input label.
Remarks
index must be in the range 1..nrOfInputs.
MatrixSetInputLabel(int, string, string)
Sets the label of the specified input.
void MatrixSetInputLabel(int pid, string oldName, string newName)
Parameters
pidintThe ID of the matrix parameter.
oldNamestringThe label of the input.
newNamestringThe new input label.
MatrixSetInputLabel(string, int, string)
Sets the label of the specified 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.")]
void MatrixSetInputLabel(string parameterName, int index, string newName)
Parameters
parameterNamestringThe name of the matrix parameter.
indexintThe index of the input.
newNamestringThe new input 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.
index must be in the range 1..nrOfInputs.
MatrixSetInputLabel(string, string, string)
Sets the label of the specified 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.")]
void MatrixSetInputLabel(string parameterName, string oldName, string newName)
Parameters
parameterNamestringThe name of the matrix parameter.
oldNamestringThe label of the input.
newNamestringThe new input 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.