RowTag(mode, analysis_code[, rowTag] [,paramCode])
Returns an array of analysis row values for the current parameter.
Arguments
Parameter | Description |
---|---|
Mode | Mode
|
analysis_code | returns the String naming the code of the analysis object whose Row Tags are to be returned. Use _OBJECTKEY or leave empty to use the name of the current analysis object. |
rowTag
|
String naming the row whose value is to be returned. |
paramCode
|
Use _ANALYSISPARAM or leave empty to retrieve values for the current parameter. |
Return Value
Returns an array of values where the elements correspond to the parameters.
RowTag example
This example returns the value of the SOURCE rows in the Source Data area.
Dim x As Object = RowTag(0, _OBJECTKEY, "SOURCE", _ANALYSISPARAM)
return = x
Suppose Protein is the current parameter in the calculation event. Then the above code returns a 2 position array with the values 12.75 and 18.93.