Method MatrixIsInputLineEnabled
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
MatrixIsInputLineEnabled(int, int)
Gets a value indicating whether the specified matrix input is enabled.
bool MatrixIsInputLineEnabled(int pid, int index)
Parameters
Returns
- bool
trueif the specified matrix input is enabled; otherwise,false.
MatrixIsInputLineEnabled(int, string)
Gets a value indicating whether the specified matrix input is enabled.
bool MatrixIsInputLineEnabled(int pid, string lineLabel)
Parameters
Returns
- bool
trueif the specified matrix input is enabled; otherwise,false.
MatrixIsInputLineEnabled(string, int)
Gets a value indicating whether the specified matrix input is enabled.
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 MatrixIsInputLineEnabled(string parameterName, int index)
Parameters
Returns
- bool
trueif the specified matrix input is enabled; otherwise,false.
Remarks
The specified input index must be in the range 1..nrOfInputs.
MatrixIsInputLineEnabled(string, string)
Gets a value indicating whether the specified matrix input is enabled.
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 MatrixIsInputLineEnabled(string parameterName, string lineLabel)
Parameters
parameterNamestringThe name of the matrix parameter.
lineLabelstringThe label of the matrix input.
Returns
- bool
trueif the specified matrix input is enabled; 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.