Class ButtonSet

ボタンセット

行に表示される Button オブジェクトのセットを保持します。

Google Workspace アドオンと Google Chat アプリで利用できます。

const textButton = CardService.newTextButton();
// Finish building the text button...

const imageButton = CardService.newImageButton();
// Finish building the image button...

const buttonSet =
    CardService.newButtonSet().addButton(textButton).addButton(imageButton);

メソッド

メソッド戻り値の型概要
addButton(button)ButtonSetボタンを追加します。

詳細なドキュメント

addButton(button)

ボタンを追加します。

パラメータ

名前説明
buttonButton追加ボタン。

戻る

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