一个枚举,表示由一个或多个已确定的本地化集合,
添加到 alert
或 prompt
中。要确定用户点击的是哪个按钮
请使用 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.'); }
属性
属性 | 类型 | 说明 |
---|---|---|
OK | Enum | 一个“OK”按钮,表示一条只能关闭的信息性消息。 |
OK_CANCEL | Enum | “OK”按钮和“取消”按钮按钮,让用户能够继续或暂停 操作。 |
YES_NO | Enum | “是”按钮和“否”按钮,让用户能够回答是/否问题。 |
YES_NO_CANCEL | Enum | “是”“否”按钮,以及“取消”按钮按钮,让用户能够回答 是/否问题或停止操作。 |