保留一組以一列顯示的 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 | 設定方塊清單版面配置。 |
內容詳盡的說明文件
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
:這個物件用於鏈結。