Enum Dimension
ディメンション
スプレッドシートにデータを格納できる方向を列挙します。
列挙型を呼び出すには、親クラス、名前、プロパティを呼び出します。たとえば、
SpreadsheetApp.Dimension.COLUMNS
のようにします。
プロパティ
プロパティ | 種類 | 説明 |
COLUMNS | Enum | 列(縦方向)のディメンション。 |
ROWS | Enum | 行(水平方向)のディメンション。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2023-12-02 UTC。
[null,null,["最終更新日 2023-12-02 UTC。"],[[["`Dimension` is used to specify the direction of data in a spreadsheet, either by rows or columns."],["To use a dimension, refer to it using `SpreadsheetApp.Dimension` followed by the specific property like `COLUMNS` or `ROWS`."],["The properties `COLUMNS` and `ROWS` represent the vertical and horizontal dimensions respectively, allowing you to work with data in those directions."]]],["The `Dimension` enum defines directions for data storage in a spreadsheet. It is accessed via its parent class, `SpreadsheetApp`, followed by its name and property, such as `SpreadsheetApp.Dimension.COLUMNS`. It contains two properties: `COLUMNS`, representing the vertical dimension, and `ROWS`, representing the horizontal dimension. These properties are used to specify whether data is oriented vertically or horizontally.\n"]]