DimensionRange
Un intervallo lungo una singola dimensione in un foglio. Tutti gli indici sono basati su zero. Gli indici sono aperti a metà: l'indice iniziale è incluso, mentre l'indice finale è esclusivo. Gli indici mancanti indicano che l'intervallo non è limitato su quel lato.
Rappresentazione JSON |
{
"sheetId": integer,
"dimension": enum (Dimension ),
"startIndex": integer,
"endIndex": integer
} |
Campi |
sheetId |
integer
Il foglio su cui si trova questo intervallo.
|
dimension |
enum (Dimension )
La dimensione dell'intervallo.
|
startIndex |
integer
L'inizio (incluso) dell'intervallo oppure non impostato se non delimitato.
|
endIndex |
integer
La fine (esclusa) dell'intervallo oppure non impostata se non delimitato.
|
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2024-10-15 UTC.
[null,null,["Ultimo aggiornamento 2024-10-15 UTC."],[[["A `GridRange` defines a range within a sheet using sheet ID, dimension, and start/end indexes."],["Indexes are zero-based and half-open, meaning the start index is included, and the end index is excluded."],["Missing start or end indexes imply the range is unbounded on the corresponding side."],["`GridRange` is represented in JSON format using `sheetId`, `dimension`, `startIndex`, and `endIndex` properties."]]],["This JSON structure represents a range on a sheet along a single dimension. It defines the `sheetId`, the `dimension` (e.g., rows or columns), and the span's start and end indexes. Indexes are zero-based, with the start index being inclusive and the end index exclusive. If `startIndex` or `endIndex` are not specified, the range is unbounded on that particular side. The structure includes these four data points to describe ranges within a single sheet dimension.\n"]]