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