テキストを表示し、基本的な 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
- チェーン用のこのオブジェクト。