Class TextParagraph

TextParagraph

テキストを表示し、基本的な 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);

パラメータ

名前説明
maxLinesInteger表示されるテキストの最大行数。

戻る

TextParagraph - チェーン用のこのオブジェクト。


setText(text)

段落のテキストを設定します。必須。

パラメータ

名前説明
textString表示するテキスト。

戻る

TextParagraph - チェーン用のこのオブジェクト。