Holds a set of Chip
objects that are displayed in a row, wrapping to the next line to
horizontal scrollable.
Only available for Google Chat apps. Not available for Google Workspace Add-ons.
const chip = CardService.newChip(); // Finish building the text chip... const chipList = CardService.newChipList() .setLayout(CardService.ChipListLayout.WRAPPED) .addChip(chip);
Methods
Method | Return type | Brief description |
---|---|---|
addChip(chip) | ChipList | Adds a chip. |
setLayout(layout) | ChipList | Sets the chip list layout. |
Detailed documentation
addChip(chip)
setLayout(layout)
Sets the chip list layout. If unset, it defaults to ChipListLayout.WRAPPED
layout.
const chip = CardService.newChip(); // Finish building the text chip... const chipList = CardService.newChipList() .setLayout(CardService.ChipListLayout.HORIZONTAL_SCROLLABLE) .addChip(chip);
Parameters
Name | Type | Description |
---|---|---|
layout | ChipListLayout | The chip list layout. |
Return
ChipList
— This object, for chaining.