リッチテキスト値のビルダー。
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
build() | Rich | このビルダーからリッチテキスト値を作成します。 |
set | Rich | この値の指定されたサブ文字列のリンク URL を設定します。link が null の場合、クリアします。 |
set | Rich | 値全体のリンク URL を設定します。link が null の場合は、値を消去します。 |
set | Rich | この値のテキストを設定し、既存のテキスト スタイルをすべて消去します。 |
set | Rich | この値の指定された部分文字列にテキスト スタイルを適用します。 |
set | Rich | 値全体にテキスト スタイルを適用します。 |
詳細なドキュメント
build()
set Link Url(startOffset, endOffset, linkUrl)
この値の指定されたサブ文字列のリンク URL を設定します。link
が null
の場合、リンク URL はクリアされます。
// Creates a Rich Text value for the text "foo no baz" with "foo" pointing to // "https://bar.foo" and "baz" to "https://abc.xyz". // "foo" is underlined with the default link color, whereas "baz" has its text // style overridden by a call to `setTextStyle`, and is therefore black and bold // with no underlining. const boldStyle = SpreadsheetApp.newTextStyle() .setUnderline(false) .setBold(true) .setForegroundColor('#000000') .build(); const value = SpreadsheetApp.newRichTextValue() .setText('foo no baz') .setLinkUrl(0, 3, 'https://bar.foo') .setLinkUrl(7, 10, 'https://abc.xyz') .setTextStyle(7, 10, boldStyle) .build();
パラメータ
名前 | 型 | 説明 |
---|---|---|
start | Integer | サブ文字列の開始オフセット(この値を含む)。 |
end | Integer | サブ文字列の終了オフセット(この値は含まれません)。 |
link | String | 設定されるリンク URL。 |
戻る
Rich
- チェーン用のこのビルダー。
set Link Url(linkUrl)
値全体のリンク URL を設定します。link
が null
の場合は、値を消去します。
// Creates a Rich Text value for the text "Foo" which points to // "https://bar.foo". const value = SpreadsheetApp.newRichTextValue() .setText('Foo') .setLinkUrl('https://bar.foo') .build();
パラメータ
名前 | 型 | 説明 |
---|---|---|
link | String | 設定されるリンク URL。 |
戻る
Rich
- チェーン用のこのビルダー。
set Text(text)
この値のテキストを設定し、既存のテキスト スタイルをすべて消去します。新しいリッチテキスト値を作成する場合は、set
の前に呼び出す必要があります。
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | String | この値のテキスト。 |
戻る
Rich
- チェーン用のこのビルダー。
set Text Style(startOffset, endOffset, textStyle)
この値の指定された部分文字列にテキスト スタイルを適用します。オフセットは 0 ベースで、セルのテキスト値を基準とします。text
が null
の場合は何もしません。
// Creates a Rich Text value for the text "HelloWorld", with "Hello" bolded, and // "World" italicized. const bold = SpreadsheetApp.newTextStyle().setBold(true).build(); const italic = SpreadsheetApp.newTextStyle().setItalic(true).build(); const value = SpreadsheetApp.newRichTextValue() .setText('HelloWorld') .setTextStyle(0, 5, bold) .setTextStyle(5, 10, italic) .build();
パラメータ
名前 | 型 | 説明 |
---|---|---|
start | Integer | サブ文字列の開始オフセット(この値を含む)。 |
end | Integer | サブ文字列の終了オフセット(この値は含まれません)。 |
text | Text | 設定されるテキスト スタイル。 |
戻る
Rich
- チェーン用のこのビルダー。
set Text Style(textStyle)
値全体にテキスト スタイルを適用します。以前に設定されたテキスト スタイルは、text
内の値によって直接上書きされた場合にのみ影響を受けます。text
が null
の場合は何もしません。
// Creates a Rich Text value for the text "HelloWorld" with "Hello" bolded and // italicized, and "World" only italicized. const bold = SpreadsheetApp.newTextStyle().setBold(true).build(); const italic = SpreadsheetApp.newTextStyle().setItalic(true).build(); const value = SpreadsheetApp.newRichTextValue() .setText('HelloWorld') .setTextStyle(0, 5, bold) .setTextStyle(italic) .build();
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | Text | 設定されるテキスト スタイル。 |
戻る
Rich
- チェーン用のこのビルダー。