[Google Apps Script] 값 입력받기(prompt) / InputBox
페이지 정보
본문
// InputBox
var ui = SpreadsheetApp.getUi();
var ask = ui.prompt("What is your name?", ui.ButtonSet.YES_NO);
var response = ask.getResponseText();
if(ask.getSelectedButton() == ui.Button.YES) {
ui.alert(response);
}
추천0 비추천0
댓글목록
등록된 댓글이 없습니다.