تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
ButtonSet
تعداد يمثل مجموعات محددة مسبقًا ومترجمة لزر أو أكثر من أزرار مربع الحوار التي يمكن
تمّت إضافته إلى alert أو prompt. لتحديد الزر الذي نقر عليه المستخدم،
استخدام Button.
لاستدعاء تعداد، يمكنك استدعاء الفئة الأصل والاسم والخاصية. مثلاً:
Base.ButtonSet.OK
// 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.');
}
أماكن إقامة
الموقع
النوع
الوصف
OK
Enum
كلمة "حسنًا" واحدة يشير إلى رسالة إعلامية لا يمكن إغلاقها إلا.
OK_CANCEL
Enum
عبارة "حسنًا" وزر "إلغاء" مما يتيح للمستخدم إما المتابعة أو إيقافها
العملية.
YES_NO
Enum
و"نعم" زر و"لا" مما يتيح للمستخدم الإجابة عن السؤال بنعم/لا.
YES_NO_CANCEL
Enum
و"نعم" زر "لا" والزر "إلغاء" مما يسمح للمستخدم بالإجابة على
سؤال نعم/لا أو إيقاف العملية.
تاريخ التعديل الأخير: 2024-09-12 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","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 (حسب التوقيت العالمي المتفَّق عليه)"],[[["`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."]]],[]]