Enum ButtonSet

ButtonSet

此枚举表示可添加到 alertprompt 中的一个或多个对话框按钮的预定本地化集合。如需确定用户点击的是哪个按钮,请使用 Button

若要调用枚举,您可以调用其父类、名称和属性。例如 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.');
}

属性

媒体资源类型说明
OKEnum一个“确定”按钮,表示一条只能关闭的信息性消息。
OK_CANCELEnum一个“确定”按钮和一个“取消”按钮,让用户可以继续或停止操作。
YES_NOEnum一个“是”按钮和一个“否”按钮,以便用户回答是/否问题。
YES_NO_CANCELEnum一个“Yes”(是)按钮、一个“No”(否)按钮和一个“Cancel”(取消)按钮,以便用户回答是/否问题或停止操作。