Class CollapseControl

CollapseControl

カスタマイズ可能な折りたたみと展開のコントロール。

Google Chat アプリでのみ使用できます。Google Workspace アドオンには使用できません。

const collapseButton =
    CardService.newTextButton()
        .setTextButtonStyle(CardService.TextButtonStyle.BORDERLESS)
        .setText('less less')
        .setMaterialIcon(CardService.newMaterialIcon().setName('bug_report'));

const expandButton =
    CardService.newImageButton()
        .setImageButtonStyle(CardService.ImageButtonStyle.FILLED)
        .setMaterialIcon(CardService.newMaterialIcon().setName('bug_report'));

const collapseControl =
    CardService.newCollapseControl()
        .setHorizontalAlign(CardService.HorizontalAlignment.END)
        .setExpandButton(expandButton)
        .setCollapseButton(collapseButton);

メソッド

メソッド戻り値の型概要
setCollapseButton(button)CollapseControl[表示を減らす] ボタンに表示される Button を設定します。
setExpandButton(button)CollapseControl[もっと見る] ボタンに表示される Button を設定します。
setHorizontalAlign(horizontalAlignment)CollapseControlCollapseControlHorizontalAlignment を設定します。

詳細なドキュメント

setCollapseButton(button)

[表示を減らす] ボタンに表示される Button を設定します。省略可。
閉じるボタンと一緒に設定する必要があります。

const collapseControl =
    CardService.newCollapseControl().setCollapseButton(collapseButton);

パラメータ

名前説明
buttonButton設定する折りたたみボタン。

戻る

CollapseControl - チェーン用のオブジェクト。


setExpandButton(button)

[さらに表示] ボタンに表示される Button を設定します。省略可。
閉じるボタンと一緒に設定する必要があります。

const collapseControl =
    CardService.newCollapseControl().setExpandButton(expandButton);

パラメータ

名前説明
buttonButton設定する展開ボタン。

戻る

CollapseControl - チェーン用のこのオブジェクト。


setHorizontalAlign(horizontalAlignment)

CollapseControlHorizontalAlignment を設定します。省略可。*

const collapseControl = CardService.newCollapseControl().setHorizontalAlign(
    CardService.HorizontalAlignment.START,
);

パラメータ

名前説明
horizontalAlignmentHorizontalAlignmentCollapseControl ウィジェットの水平方向の配置。

戻る

CollapseControl - チェーン用のこのオブジェクト。