可顯示文字且支援基本 HTML 格式的小工具。
適用於 Google Workspace 外掛程式和 Google Chat 應用程式。
const textParagraph = CardService.newTextParagraph().setText( 'This is a text paragraph widget. Multiple lines are allowed if needed.', );
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
set | Text | 設定小工具中顯示的文字行數上限。 |
set | Text | 設定段落的文字。 |
內容詳盡的說明文件
set Max Lines(maxLines)
設定小工具中顯示的文字行數上限。如果文字超過指定的最大行數,系統會隱藏超出部分,並顯示「顯示更多」按鈕。如果文字等於或短於指定的最大行數,系統就不會顯示「顯示更多」按鈕。
適用於 Google Chat 應用程式。在 Google Workspace 外掛程式的開發人員預覽版中。
const textParagraph = CardService.newTextParagraph() .setText( 'This is a text paragraph widget. Multiple lines are allowed if needed.', ) .setMaxLines(1);
參數
名稱 | 類型 | 說明 |
---|---|---|
max | Integer | 顯示的文字行數上限。 |
回攻員
Text
:這個物件用於鏈結。