Class CardSection

CardSection

資訊卡區塊會顯示多個小工具群組,並以視覺化方式區分小工具。

適用於 Google Workspace 外掛程式和 Google Chat 應用程式。

var image = CardService.newImage();
// Build image ...
var textParagraph = CardService.newTextParagraph();
// Build text paragraph ...

var cardSection = CardService.newCardSection()
    .setHeader("Section header")
    .addWidget(image)
    .addWidget(textParagraph);

方法

方法傳回類型簡短說明
addWidget(widget)CardSection將指定的小工具新增至這個部分。
setCollapsible(collapsible)CardSection設定是否可收合區段。
setHeader(header)CardSection設定區段的標頭。
setNumUncollapsibleWidgets(numUncollapsibleWidgets)CardSection設定這個部分收合時仍顯示的小工具數量。

內容詳盡的說明文件

addWidget(widget)

將指定的小工具新增至這個部分。小工具會按照新增順序顯示。個人中心 每個資訊卡區塊最多只能加入 100 個小工具。

參數

名稱類型說明
widgetWidget要新增至區段的小工具。

回攻員

CardSection:這個物件用於鏈結。


setCollapsible(collapsible)

設定是否可收合區段。

參數

名稱類型說明
collapsibleBoolean可收合設定。

回攻員

CardSection:這個物件用於鏈結。


setHeader(header)

設定區段的標頭。選填。

參數

名稱類型說明
headerString標題文字。

回攻員

CardSection:這個物件用於鏈結。


setNumUncollapsibleWidgets(numUncollapsibleWidgets)

設定這個部分收合時仍顯示的小工具數量。小工具 就會顯示最先加入的

參數

名稱類型說明
numUncollapsibleWidgetsInteger要顯示的小工具數量。

回攻員

CardSection:這個物件用於鏈結。