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 - チェーン用のこのオブジェクト。