カルーセル(スライダー)は、ウィジェットのリストをスライドショー形式で回転して表示します。ボタンを使用して前のウィジェットまたは次のウィジェットに移動できます。
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')))
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
add | Carousel | カルーセル カードを追加します。 |
詳細なドキュメント
add Carousel Card(card)
カルーセル カードを追加します。
const carousel = CardService.newCarousel() .addCarouselCard(CardService.newCarouselCard().addWidget( CardService.newTextParagraph().setText('The first text paragraph in carousel')));
パラメータ
名前 | 型 | 説明 |
---|---|---|
card | Carousel | 追加するカルーセル カード。 |
戻る
Carousel
- チェーン用のこのオブジェクト。