يحتوي على مجموعة من 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)
setLayout(layout)
لضبط تنسيق قائمة الشرائح وفي حال عدم ضبطه، يتم ضبطه تلقائيًا على تنسيق ChipListLayout.WRAPPED
.
const chip = CardService.newChip(); // Finish building the text chip... const chipList = CardService.newChipList() .setLayout(CardService.ChipListLayout.HORIZONTAL_SCROLLABLE) .addChip(chip);
المعلمات
الاسم | النوع | الوصف |
---|---|---|
layout | ChipListLayout | تنسيق قائمة الشرائح |
الإرجاع
ChipList
: هذا العنصر، لإنشاء سلسلة.