// 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.');
}
プロパティ
プロパティ
タイプ
説明
OK
Enum
1 つの「OK」このボタンは、閉じることしかできない情報メッセージを示しています。
OK_CANCEL
Enum
「OK」[Cancel] ボタンがあります。ユーザーが処理を続行または中止できる
あります。
YES_NO
Enum
A 「はい」[いいえ] ボタンをクリックすると、ユーザーが「はい」か「いいえ」で答えられるようになります。
YES_NO_CANCEL
Enum
A 「はい」[いいえ] ボタンをクリックすると、[キャンセル]ボタンをユーザーはこのボタンに返信するか、
「はい」か「いいえ」で答える質問をしたり、オペレーションを停止したりできます。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2024-09-12 UTC。"],[[["`ButtonSet` is an enum used to create predefined, localized button sets for dialog boxes in Apps Script."],["It provides options like `OK`, `OK_CANCEL`, `YES_NO`, and `YES_NO_CANCEL` for different dialog scenarios."],["You can determine the user's button click by comparing the response to `ui.Button` values."],["These button sets are used with `alert()` and `prompt()` methods of the `Ui` class."]]],[]]