Class FixedFooter

固定页脚

Card 底部显示的固定页脚。

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

const fixedFooter = CardService.newFixedFooter().setPrimaryButton(
    CardService.newTextButton().setText('help').setOpenLink(
        CardService.newOpenLink().setUrl('http://www.google.com')),
);

方法

方法返回类型简介
setPrimaryButton(button)FixedFooter在固定页脚中设置主按钮。
setSecondaryButton(button)FixedFooter在固定页脚中设置辅助按钮。

详细文档

setPrimaryButton(button)

在固定页脚中设置主按钮。主按钮必须是 TextButtonStyle.FILLED 按钮。如果未为主要按钮设置背景颜色,则该按钮将使用插件manifest中定义的主要颜色。

参数

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

返回

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


setSecondaryButton(button)

在固定页脚中设置辅助按钮。辅助按钮必须是 TextButtonStyle.OUTLINED 按钮。如果未调用 setPrimaryButton(button) 来设置主按钮,此方法不会执行任何操作。

参数

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

返回

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