SelectionType, चुने गए एक या एक से ज़्यादा ऑब्जेक्ट के सबसे खास टाइप दिखाता है. उदाहरण के लिए, अगर Table में एक या उससे ज़्यादा TableCell इंस्टेंस चुने जाते हैं, तो चुनने का टाइप SelectionType.TABLE_CELL होगा. Selection.getTableCellRange का इस्तेमाल करके, TableCellRange को फिर से पाया जा सकता है. Selection.getPageElementRange का इस्तेमाल करके, Table को वापस पाया जा सकता है और Page को Selection.getCurrentPage से पाया जा सकता है.
किसी Enum को कॉल करने के लिए, आपको उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल करना होता है. उदाहरण के लिए,
SlidesApp.SelectionType.TEXT.
प्रॉपर्टी
प्रॉपर्टी
Type
ब्यौरा
UNSUPPORTED
Enum
चुनने का एक ऐसा टाइप जो इस्तेमाल नहीं किया जा सकता.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2023-12-02 (UTC) को अपडेट किया गया."],[[["`SelectionType` identifies the specific type of selected objects in Google Slides, like text, table cells, or pages."],["When multiple objects of the same type are selected, `SelectionType` reflects the most specific type, enabling access to properties like `TableCellRange` or `PageElementRange`."],["`SelectionType` has several enum values, including `UNSUPPORTED`, `NONE`, `TEXT`, `TABLE_CELL`, `PAGE`, `PAGE_ELEMENT`, and `CURRENT_PAGE`, representing different selection states."],["You can access these values using the syntax `SlidesApp.SelectionType.TEXT` (replace `TEXT` with the desired property)."]]],[]]