富文本值的构建器。
方法
方法 | 返回类型 | 简介 |
---|---|---|
build() | Rich | 使用此构建器创建富文本值。 |
set | Rich | 为此值的给定子字符串设置链接网址,如果 link 为 null ,则清除该子字符串的链接网址。 |
set | Rich | 为整个值设置链接网址,如果 link 为 null ,则清除该值。 |
set | Rich | 为此值设置文本,并清除所有现有文本样式。 |
set | Rich | 将文本样式应用于此值的指定子字符串。 |
set | Rich | 将文本样式应用于整个值。 |
详细文档
build()
set Link Url(startOffset, endOffset, linkUrl)
为此值的给定子字符串设置链接网址,如果 link
为 null
,则清除该子字符串的链接网址。
// 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 | 要设置的链接网址。 |
返回
Rich
- 此构建器,用于链式调用。
set Link Url(linkUrl)
设置整个值的链接网址,如果 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 | 要设置的链接网址。 |
返回
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
- 此构建器,用于链式调用。