用于显示文本且支持基本 HTML 格式的 widget。
适用于 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
- 此对象,用于实现链式连接。