Method MatrixGetOutputLabel
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
MatrixGetOutputLabel(int, int)
Gets the label of the specified matrix output.
public virtual string MatrixGetOutputLabel(int pid, int index)
Parameters
Returns
- string
The label of the specified matrix output.
Examples
Element element = engine.FindElement(400, 2000);
string label = element.MatrixGetOutputLabel(1000, 10);
Remarks
The index of the output must be in the range 1..nrOfOutputs.
Exceptions
- DataMinerException
The matrix parameter is not found.
-or-index
is not in the range 1..nrOfOutputs.
MatrixGetOutputLabel(string, int)
Gets the label of the specified matrix output.
public virtual string MatrixGetOutputLabel(string parameterName, int index)
Parameters
Returns
- string
The label of the specified matrix output.
Examples
Element element = engine.FindElement(400, 2000);
string label = element.MatrixGetOutputLabel("Example Matrix", 10);
Remarks
The index of the output must be in the range 1..nrOfOutputs.
Exceptions
- DataMinerException
The matrix parameter is not found.
-or-index
is not in the range 1..nrOfOutputs.