Class Carousel

輪轉介面

輪轉介面 (又稱滑桿) 會以投影片格式旋轉並顯示小工具清單,並提供按鈕讓使用者前往上一個或下一個小工具。

適用於 Google Workspace 外掛程式和 Google Chat 應用程式。

const carousel =
    CardService.newCarousel()
        .addCarouselCard(CardService.newCarouselCard().addWidget(
            CardService.newTextParagraph().setText('The first text paragraph in carousel')))
        .addCarouselCard(CardService.newCarouselCard().addWidget(
            CardService.newTextParagraph().setText('The second text paragraph in carousel')))
        .addCarouselCard(CardService.newCarouselCard().addWidget(
            CardService.newTextParagraph().setText('The third text paragraph in carousel')))

方法

方法傳回類型簡短說明
addCarouselCard(card)Carousel新增輪轉介面資訊卡。

內容詳盡的說明文件

addCarouselCard(card)

新增輪轉介面資訊卡。

const carousel =
    CardService.newCarousel()
        .addCarouselCard(CardService.newCarouselCard().addWidget(
            CardService.newTextParagraph().setText('The first text paragraph in carousel')));

參數

名稱類型說明
cardCarouselCard要新增的輪轉介面資訊卡。

回攻員

Carousel:用於鏈結的物件。