미리 결정되고 현지화된 하나 이상의 대화상자 버튼 집합을 나타내는 enum입니다.
alert 또는 prompt에 추가됩니다. 사용자가 어떤 버튼을 클릭했는지 확인하려면
Button를 사용합니다.
enum을 호출하려면 상위 클래스, 이름, 속성을 호출합니다. 예를 들면
Base.ButtonSet.OK입니다.
// 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
단일 'OK' 닫을 수만 있는 정보 메시지를 나타내는 버튼입니다.
OK_CANCEL
Enum
'OK' 버튼 및 '취소' 버튼을 사용하여 사용자가 시작 버튼을 클릭하거나
연산으로 해석됩니다.
YES_NO
Enum
'예' 버튼, '아니요' 버튼을 클릭하여 사용자가 예/아니요 질문에 답하도록 할 수 있습니다.
YES_NO_CANCEL
Enum
'예' '아니요' 버튼, 버튼, '취소' 버튼을 클릭하여 사용자가 질문에 답변하거나
예/아니요 질문을 하거나 작업을 중단하세요.
[[["이해하기 쉬움","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."]]],[]]