Card
底部显示的固定页脚。
适用于 Google Workspace 插件和 Google Chat 应用。
const fixedFooter = CardService.newFixedFooter().setPrimaryButton( CardService.newTextButton().setText('help').setOpenLink( CardService.newOpenLink().setUrl('http://www.google.com')), );
方法
方法 | 返回类型 | 简介 |
---|---|---|
set | Fixed | 在固定页脚中设置主按钮。 |
set | Fixed | 在固定页脚中设置辅助按钮。 |
详细文档
set Primary Button(button)
在固定页脚中设置主按钮。主按钮必须是 Text
按钮。如果未为主要按钮设置背景颜色,则该按钮将使用插件manifest中定义的主要颜色。
参数
名称 | 类型 | 说明 |
---|---|---|
button | Text | 用于添加的按钮。 |
返回
Fixed
- 此对象,用于链式调用。
set Secondary Button(button)
在固定页脚中设置辅助按钮。辅助按钮必须是 Text
按钮。如果未调用 set
来设置主按钮,此方法不会执行任何操作。
参数
名称 | 类型 | 说明 |
---|---|---|
button | Text | 用于添加的按钮。 |
返回
Fixed
- 此对象,用于链式调用。