enum을 호출하려면 상위 클래스, 이름, 속성을 호출합니다. 예를 들면
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
모든 대화상자의 제목 표시줄에 표시되는 표준 닫기 버튼입니다. 이 버튼은 명시적으로
삭제할 수 없습니다.