Enum Button

按鈕

列舉代表 alertPromptResponse.getSelectedButton() 傳回的預定義本地化對話方塊按鈕,以表示 也就是使用者在對話方塊中點選的按鈕無法設定這些值;將按鈕加入 alertprompt,請改用 ButtonSet

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

屬性

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