Enum Dimension
डाइमेंशन
उन संभावित निर्देशों की सूची जिनके साथ डेटा को स्प्रेडशीट में सेव किया जा सकता है.
किसी Enum को कॉल करने के लिए, आपको उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल करना होता है. उदाहरण के लिए,
SpreadsheetApp.Dimension.COLUMNS
.
प्रॉपर्टी
प्रॉपर्टी | Type | ब्यौरा |
COLUMNS | Enum | कॉलम (वर्टिकल) डाइमेंशन. |
ROWS | Enum | पंक्ति (हॉरिज़ॉन्टल) डाइमेंशन. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 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"]]