Class ButtonSet

按钮设置

用于存储一组并排显示的 Button 对象。

适用于 Google Workspace 插件和 Google Chat 应用。

const textButton = CardService.newTextButton();
// Finish building the text button...

const imageButton = CardService.newImageButton();
// Finish building the image button...

const buttonSet =
    CardService.newButtonSet().addButton(textButton).addButton(imageButton);

方法

方法返回类型简介
addButton(button)ButtonSet添加按钮。

详细文档

addButton(button)

添加按钮。

参数

名称类型说明
buttonButton用于添加的按钮。

返回

ButtonSet - 此对象,用于链式调用。