Le carrousel, également appelé curseur, fait pivoter et affiche une liste de widgets sous forme de diaporama, avec des boutons permettant d'accéder au widget précédent ou suivant.
Disponible pour les modules complémentaires Google Workspace et les applications 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')))
Méthodes
Méthode | Type renvoyé | Brève description |
---|---|---|
add | Carousel | Ajoute une fiche carrousel. |
Documentation détaillée
add Carousel Card(card)
Ajoute une fiche carrousel.
const carousel = CardService.newCarousel() .addCarouselCard(CardService.newCarouselCard().addWidget( CardService.newTextParagraph().setText('The first text paragraph in carousel')));
Paramètres
Nom | Type | Description |
---|---|---|
card | Carousel | Carte du carrousel à ajouter. |
Renvois
Carousel
: cet objet, pour le chaînage.