可显示为轮播界面项的卡片。
适用于 Google Workspace 插件和 Google Chat 应用。
const carouselCard = CardService.newCarouselCard() .addWidget( CardService.newTextParagraph().setText('a text paragraph in the carousel card')) .addFooterWidget( CardService.newTextParagraph().setText('a text paragraph in the carousel card footer'));
方法
方法 | 返回类型 | 简介 |
---|---|---|
add | Carousel | 将指定的微件添加到此轮播卡片的页脚。 |
add | Carousel | 将指定的微件添加到此轮播卡片。 |
详细文档
add Widget(widget)
将指定的微件添加到此轮播卡片。微件会按照添加的顺序显示。
const carouselCard = CardService.newCarouselCard() .addWidget( CardService.newTextParagraph().setText('a text paragraph in the carousel card'));
参数
名称 | 类型 | 说明 |
---|---|---|
widget | Widget | 要添加到轮播卡片中的微件。 |
返回
Carousel
- 此对象,用于链式调用。