Class ButtonSet

ButtonSet

保存一组显示在一行中的 Button 对象。

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

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

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

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

方法

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

详细文档

addButton(button)

添加一个按钮。

参数

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

返回

ButtonSet - 此对象,用于链接。