Enum Button

按鈕

此列舉代表 alertPromptResponse.getSelectedButton() 傳回的預先定義、經過本地化的對話方塊按鈕,用於指出使用者按下對話方塊中的哪個按鈕。這些值無法設定;如要將按鈕新增至 alertprompt,請改用 ButtonSet

如要呼叫列舉,請呼叫其父項類別、名稱和屬性。例如 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.');
}

屬性

屬性類型說明
CLOSEEnum每個對話方塊的標題列中都會顯示標準關閉按鈕。這個按鈕並未明確加入對話方塊,因此無法移除。
OKEnum「OK」按鈕,表示作業應繼續進行。
CANCELEnum「取消」按鈕,表示作業不應繼續執行。
YESEnum「是」按鈕,表示對問題的正面回應。
NOEnum「否」按鈕,表示對問題的否定回應。