此列舉代表 alert
或 Prompt
傳回的預先定義、經過本地化的對話方塊按鈕,用於指出使用者按下對話方塊中的哪個按鈕。這些值無法設定;如要將按鈕新增至 alert
或 prompt
,請改用 Button
。
如要呼叫列舉,請呼叫其父項類別、名稱和屬性。例如
Base.Button.CLOSE
。
// Display a dialog box with a message and "Yes" and "No" buttons. const ui = DocumentApp.getUi(); const 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 | 「OK」按鈕,表示作業應繼續進行。 |
CANCEL | Enum | 「取消」按鈕,表示作業不應繼續執行。 |
YES | Enum | 「是」按鈕,表示對問題的正面回應。 |
NO | Enum | 「否」按鈕,表示對問題的否定回應。 |