行に表示される 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
- チェーン用のこのオブジェクト。