Class Carousel

Karussell

Ein Karussell, auch als Schieberegler bezeichnet, dreht sich und zeigt eine Liste von Widgets in einem Diashow-Format an. Mit den Schaltflächen können Sie zum vorherigen oder nächsten Widget wechseln.

Verfügbar für Google Workspace-Add-ons und Google Chat-Apps.

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')))

Methoden

MethodeRückgabetypKurzbeschreibung
addCarouselCard(card)CarouselFügen Sie eine Karussellkarte hinzu.

Detaillierte Dokumentation

addCarouselCard(card)

Fügen Sie eine Karussellkarte hinzu.

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

Parameter

NameTypBeschreibung
cardCarouselCardDie hinzuzufügende Karussellkarte.

Rückflug

Carousel – dieses Objekt, zur Verkettung