קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
Button
enum שמייצג לחצני תיבת דו-שיח מותאמים לשוק המקומי שנקבע מראש, שהוחזרו על ידי 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
לחצן הסגירה הרגיל מוצג בסרגל הכותרת של כל תיבת דו-שיח. שימוש בלחצן הזה לא מפורש
נוסף לתיבת דו-שיח, ואי אפשר להסיר אותה.
[[["התוכן קל להבנה","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."]]],[]]