Enum ButtonSet

버튼설정

alert 또는 prompt에 추가할 수 있는 하나 이상의 사전 정의된 현지화된 대화상자 버튼 세트를 나타내는 enum입니다. 사용자가 클릭한 버튼을 확인하려면 Button를 사용하세요.

enum을 호출하려면 상위 클래스, 이름, 속성을 호출합니다. 예를 들면 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.');
}

속성

속성유형설명
OKEnum닫을 수만 있는 정보 메시지를 나타내는 단일 '확인' 버튼
OK_CANCELEnum사용자가 작업을 진행하거나 중지할 수 있는 '확인' 버튼과 '취소' 버튼
YES_NOEnum사용자가 예/아니요 질문에 답할 수 있는 '예' 버튼과 '아니요' 버튼
YES_NO_CANCELEnum'예' 버튼, '아니요' 버튼, '취소' 버튼: 사용자가 예/아니요 질문에 답변하거나 작업을 중지할 수 있습니다.