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: هذا العنصر، لإنشاء سلسلة.