data property
Data in the grid, if this is a grid sheet.
The number of GridData objects returned is dependent on the number of
ranges requested on this sheet. For example, if this is representing
Sheet1
, and the spreadsheet was requested with ranges Sheet1!A1:C10
and Sheet1!D15:E20
, then the first GridData will have a
startRow/startColumn of 0
, while the second one will have startRow 14
(zero-based row 15), and startColumn 3
(zero-based column D). For a
DATA_SOURCE sheet, you can not request a specific range, the GridData
contains all the values.
Implementation
core.List<GridData>? data;