DimensionRange
טווח לאורך מאפיין יחיד בגיליון. כל האינדקסים מבוססים על אפס. האינדקסים הם חצי פתוחים: אינדקס ההתחלה כולל את הערך עצמו, ואינדקס הסיום לא כולל אותו. אינדקסים חסרים מציינים שהטווח אינו מוגבל בצד הזה.
ייצוג ב-JSON |
{
"sheetId": integer,
"dimension": enum (Dimension ),
"startIndex": integer,
"endIndex": integer
} |
שדות |
sheetId |
integer
הגיליון שבו נמצא הקטע.
|
dimension |
enum (Dimension )
המאפיין של הטווח.
|
startIndex |
integer
ההתחלה (כולל) של הטווח, או לא מוגדר אם הוא לא מוגבל.
|
endIndex |
integer
הסיום (לא כולל) של התקופה, או לא מוגדר אם התקופה לא מוגבלת.
|
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2024-10-15 (שעון UTC).
[null,null,["עדכון אחרון: 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"]]