Enum ButtonSet

按钮设置

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

如需调用枚举,您可以调用其父类、名称和属性。例如 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“是”按钮、“否”按钮和“取消”按钮,用于让用户回答是/否问题或暂停操作。