列舉代表 alert
或 PromptResponse.getSelectedButton()
傳回的預定義本地化對話方塊按鈕,以表示
也就是使用者在對話方塊中點選的按鈕無法設定這些值;將按鈕加入
alert
或 prompt
,請改用 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.'); }
屬性
屬性 | 類型 | 說明 |
---|---|---|
CLOSE | Enum | 每個對話方塊的標題列都會顯示標準關閉按鈕。這個按鈕未明確 且無法移除。 |
OK | Enum | 「確定」表示應繼續執行作業的按鈕。 |
CANCEL | Enum | 「取消」表示作業不應繼續的按鈕。 |
YES | Enum | 「是」按鈕,表示對問題的正面回應。 |
NO | Enum | 「否」按鈕,用於表示對問題的負面回覆。 |