Method GetCell
- Assembly
- Skyline.DataMiner.Utils.Protocol.Extension.dll
GetCell(SLProtocol, int, string, int)
Retrieves a cell from a table with the specified tablePid
, rowPK
and the columnIdx
.
public static object GetCell(this SLProtocol protocol, int tablePid, string rowPK, int columnIdx)
Parameters
protocol
SLProtocolLink with SLProtocol process.
tablePid
intThe ID of the table parameter.
rowPK
stringThe primary key of the row.
columnIdx
intThe 0-based position of the column, corresponding to the idx as defined in protocol.xml file.
Returns
- object
The value of the cell.
Remarks
Exceptions
- ArgumentNullException
rowPK
is null.