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);
详细文档
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-21。
[null,null,["最后更新时间 (UTC):2024-08-21。"],[[["`ButtonSet` objects organize and display a row of `Button` objects within Google Workspace Add-ons and Google Chat apps."],["You can add buttons, which can be either text-based or image-based, to a `ButtonSet` using the `addButton()` method."],["The `addButton()` method allows for building the layout by adding `Button` objects and facilitating chained operations for efficient design."]]],[]]