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 — चेन करने के लिए यह ऑब्जेक्ट.