Documentation menu
getCell
getCell(rowIdx: Number, colIdx: Number): Cell Data Object
Returns all the information about the cell identified by the row and column indices.
Parameters
Name | Type | Description |
---|---|---|
rowIdx | Number | Specifies the index of the row to which the cell belongs. |
colIdx | Number | Specifies the index of the column to which the cell belongs. |
Returns
Cell Data Object that contains information about the requested cell.
Example
webdatarocks.getCell(2, 1);
Try out on CodePen.