संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
बटन
यह बताने के लिए कि alert या PromptResponse.getSelectedButton() की मदद से, पहले से तय किए गए स्थानीय भाषा के डायलॉग बटन दिखाने वाली सूची
उपयोगकर्ता ने डायलॉग में किस बटन पर क्लिक किया. ये वैल्यू सेट नहीं की जा सकतीं; किसी एक विंडो में बटन जोड़ने के लिए
alert या prompt, इसके बजाय ButtonSet का इस्तेमाल करें.
किसी enum को कॉल करने के लिए, आपको उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल करना होगा. उदाहरण के लिए,
Base.Button.CLOSE.
// Display a dialog box with a message and "Yes" and "No" buttons.
var ui = DocumentApp.getUi();
var response = 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.');
}
प्रॉपर्टी
प्रॉपर्टी
टाइप
ब्यौरा
CLOSE
Enum
हर डायलॉग के टाइटल बार में दिखाया जाने वाला स्टैंडर्ड 'बंद करें' बटन. यह बटन साफ़ तौर पर नहीं बताया गया है
डायलॉग में जोड़ा गया है और इसे हटाया नहीं जा सकता.
OK
Enum
"ठीक है" बटन से पता चलता है कि कार्रवाई जारी है.
CANCEL
Enum
"रद्द करें" बटन, जो बताता है कि कार्रवाई नहीं होनी चाहिए.
YES
Enum
जवाब "हां" है बटन, जो किसी सवाल के सकारात्मक जवाब को दिखाता है.
NO
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-09-12 (UTC) को अपडेट किया गया."],[[["`Button` is an enum representing localized dialog buttons returned by alerts or prompts, indicating user action."],["These predetermined button values (`CLOSE`, `OK`, `CANCEL`, `YES`, `NO`) cannot be set directly but are accessed via `ui.Button`."],["To add buttons to alerts or prompts, use `ButtonSet` instead of individual `Button` values."],["The provided example code demonstrates using `Button` to handle user responses from a dialog."]]],[]]