getCell(rowIdx: Number, colIdx: Number): Cell Data Object
Returns all the information about the cell identified by the row and column indices.
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. |
Cell Data Object that contains information about the requested cell.
webdatarocks.getCell(2, 1);
Try out on CodePen.