Class TextParagraph

TextParagraph

用于显示文本且支持基本 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);

参数

名称类型说明
maxLinesInteger显示的文本行数上限。

返回

TextParagraph - 此对象,用于实现链式连接。


setText(text)

设置段落的文本。必填。

参数

名称类型说明
textString要显示的文本。

返回

TextParagraph - 此对象,用于链式调用。