Enum ButtonSet

按鈕設定

這個列舉代表預先定義的本地化一或多個對話方塊按鈕集合,可新增至 alertprompt。如要判斷使用者點選了哪個按鈕,請使用 Button

如要呼叫列舉,請呼叫其父項類別、名稱和屬性。例如 Base.ButtonSet.OK

// 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.');
}

屬性

屬性類型說明
OKEnum單一「確定」按鈕,表示這只是一則可關閉的資訊訊息。
OK_CANCELEnum「確定」和「取消」按鈕,可讓使用者繼續或停止操作。
YES_NOEnum「是」和「否」按鈕,可讓使用者回答是非題。
YES_NO_CANCELEnum「是」按鈕、「否」按鈕和「取消」按鈕,可讓使用者回答是/否問題或停止作業。