संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
बटनसेट करें
एक या एक से ज़्यादा डायलॉग बटन के पहले से तय किए गए, स्थानीय सेट को दिखाने वाला एक एनम. इन्हें alert या prompt में जोड़ा जा सकता है. यह पता लगाने के लिए कि उपयोगकर्ता ने किस बटन पर क्लिक किया है,
Button का इस्तेमाल करें.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
Base.ButtonSet.OK.
// Display a dialog box with a message and "Yes" and "No" buttons.constui=DocumentApp.getUi();constresponse=ui.alert('Are you sure you want to continue?',ui.ButtonSet.YES_NO,);// Process the user's response.if(response===ui.Button.YES){Logger.log('The user clicked "Yes."');}else{Logger.log('The user clicked "No" or the dialog\'s close button.');}
प्रॉपर्टी
प्रॉपर्टी
टाइप
ब्यौरा
OK
Enum
एक "ठीक है" बटन, जो जानकारी देने वाले मैसेज को दिखाता है. इस मैसेज को सिर्फ़ खारिज किया जा सकता है.
OK_CANCEL
Enum
"ठीक है" बटन और "रद्द करें" बटन, जिससे उपयोगकर्ता किसी कार्रवाई को जारी रख सकता है या उसे रोक सकता है.
YES_NO
Enum
"हां" बटन और "नहीं" बटन, जिससे उपयोगकर्ता हां/नहीं वाले सवाल का जवाब दे सकता है.
YES_NO_CANCEL
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"]],["आखिरी बार 2024-12-22 (UTC) को अपडेट किया गया."],[[["`ButtonSet` is an enum used to create predefined, localized button sets for dialog boxes in Apps Script."],["It provides options like `OK`, `OK_CANCEL`, `YES_NO`, and `YES_NO_CANCEL` for different dialog scenarios."],["You can determine the user's button click by comparing the response to `ui.Button` values."],["These button sets are used with `alert()` and `prompt()` methods of the `Ui` class."]]],[]]