這個列舉代表預先定義的本地化一或多個對話方塊按鈕集合,可新增至 alert
或 prompt
。如要判斷使用者點選了哪個按鈕,請使用 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.'); }
屬性
屬性 | 類型 | 說明 |
---|---|---|
OK | Enum | 單一「確定」按鈕,表示這只是一則可關閉的資訊訊息。 |
OK_CANCEL | Enum | 「確定」和「取消」按鈕,可讓使用者繼續或停止操作。 |
YES_NO | Enum | 「是」和「否」按鈕,可讓使用者回答是非題。 |
YES_NO_CANCEL | Enum | 「是」按鈕、「否」按鈕和「取消」按鈕,可讓使用者回答是/否問題或停止作業。 |