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
}

See also