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 - チェーン用のこのオブジェクト。