一个枚举,表示 alert
或 Prompt
返回的预定义本地化对话框按钮,用于指示用户点击了对话框中的哪个按钮。无法设置这些值;如需向 alert
或 prompt
添加按钮,请改用 Button
。
如需调用枚举,您可以调用其父类、名称和属性。例如
Base.Button.CLOSE
。
// 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.'); }
属性
属性 | 类型 | 说明 |
---|---|---|
CLOSE | Enum | 每个对话框标题栏中显示的标准关闭按钮。此按钮未明确添加到对话框中,并且无法移除。 |
OK | Enum | “确定”按钮,表示操作应继续。 |
CANCEL | Enum | “取消”按钮,表示不应继续操作。 |
YES | Enum | “是”按钮,表示对问题的肯定回答。 |
NO | Enum | “否”按钮,表示对问题的回答为否定。 |