Class Carousel

Carousel

Carousel, yang juga dikenal sebagai penggeser, memutar dan menampilkan daftar widget dalam format slide, dengan tombol yang menavigasi ke widget sebelumnya atau berikutnya.

Tersedia untuk Add-on Google Workspace dan aplikasi 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')))

Metode

MetodeJenis hasil yang ditampilkanDeskripsi singkat
addCarouselCard(card)CarouselMenambahkan kartu carousel.

Dokumentasi mendetail

addCarouselCard(card)

Menambahkan kartu carousel.

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

Parameter

NamaJenisDeskripsi
cardCarouselCardKartu carousel yang akan ditambahkan.

Pulang pergi

Carousel — Objek ini, untuk pembuatan rantai.