Class ChipList

ChipList

يحتوي على مجموعة من Chip عناصر يتم عرضها في صف، ويتم لفها إلى السطر التالي ليصبح بالإمكان التمرير بها بشكل أفقي.

لا تتوفّر هذه الميزة إلا لتطبيقات Google Chat. لا تتوفّر الإضافات في Google Workspace.

const chip = CardService.newChip();
// Finish building the text chip...

const chipList = CardService.newChipList()
                     .setLayout(CardService.ChipListLayout.WRAPPED)
                     .addChip(chip);

الطُرق

الطريقةنوع الإرجاعوصف قصير
addChip(chip)ChipListلإضافة شريحة
setLayout(layout)ChipListلضبط تنسيق قائمة الشرائح

مستندات تفصيلية

addChip(chip)

لإضافة شريحة

المعلمات

الاسمالنوعالوصف
chipChipالشريحة المطلوب إضافتها

الإرجاع

ChipList — هذا الكائن يمكن استخدامه في التسلسل.


setLayout(layout)

لضبط تنسيق قائمة الشرائح وفي حال عدم ضبطه، يتم ضبطه تلقائيًا على تنسيق ChipListLayout.WRAPPED.

const chip = CardService.newChip();
// Finish building the text chip...

const chipList =
    CardService.newChipList()
        .setLayout(CardService.ChipListLayout.HORIZONTAL_SCROLLABLE)
        .addChip(chip);

المعلمات

الاسمالنوعالوصف
layoutChipListLayoutتنسيق قائمة الشرائح

الإرجاع

ChipList: هذا العنصر، لإنشاء سلسلة.