GridCellObject

An object that contains information about the cell.

Properties

Property/TypeDescription
rowIdxNumberThe index of the cell’s row. Indexes start from 0.
colIdxNumberIndex of the сell's column. Indexes start from 0.
labelStringCell's label.
valueAnyCell's value.
cellTypeString[]Cell's type.
areaTypeStringThe area where the cell is located. Possible values: "headers", "rows", "columns", and "data".
colSpanNumberThe number of columns that the cell spans.
rowSpanNumberThe number of rows that the cell spans.

Example

{
  rowIdx: 10,
  colIdx: 2,
  label: "45 115",
  value: 45115,
  cellType: [ "data" ],
  areaType: "data",
  colSpan: 1,
  rowSpan: 1
}