Enum Button

按钮

一个枚举,表示由 alertPromptResponse.getSelectedButton() 返回的预定本地化对话框按钮,用于指明 用户点击了对话框中的哪个按钮。无法设置这些值;将按钮添加到 alertprompt,请改用 ButtonSet

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

属性

属性类型说明
CLOSEEnum显示在每个对话框标题栏中的标准关闭按钮。此按钮未明确显示 已添加到对话框中且无法移除。
OKEnum“OK”按钮,指示操作应继续。
CANCELEnum“取消”按钮,指明不应继续执行操作。
YESEnum“是”按钮,表示用户针对某个问题获得了积极回应。
NOEnum“否”按钮,表示用户针对某个问题给出负面回复。