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:這個物件用於鏈結。