Zengin Metin değerleri için bir oluşturucu.
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
build() | RichTextValue | Bu oluşturucudan bir Zengin Metin değeri oluşturur. |
setLinkUrl(startOffset, endOffset, linkUrl) | RichTextValueBuilder | Bu değerin belirtilen alt dizesi için bağlantı URL'sini ayarlar veya linkUrl ise bu değeri temizler
null . |
setLinkUrl(linkUrl) | RichTextValueBuilder | Değerin tamamı için bağlantı URL'sini ayarlar veya linkUrl değeri null ise temizlenir. |
setText(text) | RichTextValueBuilder | Bu değere ait metni ayarlar ve mevcut metin stillerini siler. |
setTextStyle(startOffset, endOffset, textStyle) | RichTextValueBuilder | Bu değerin belirtilen alt dizesine bir metin stili uygular. |
setTextStyle(textStyle) | RichTextValueBuilder | Değerin tamamına metin stili uygular. |
Ayrıntılı belgeler
build()
Bu oluşturucudan bir Zengin Metin değeri oluşturur.
Return
RichTextValue
— Bu oluşturucudan oluşturulan bir Rich Text değeri.
setLinkUrl(startOffset, endOffset, linkUrl)
Bu değerin belirtilen alt dizesi için bağlantı URL'sini ayarlar veya linkUrl
ise bu değeri temizler
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();
Parametreler
Ad | Tür | Açıklama |
---|---|---|
startOffset | Integer | Alt dize için (bu değerler dahil) başlangıç ofseti. |
endOffset | Integer | Alt dize için bitiş ofseti (hariç). |
linkUrl | String | Ayarlanan bağlantı URL'si. |
Return
RichTextValueBuilder
— Zincirleme için bu oluşturucu.
setLinkUrl(linkUrl)
Değerin tamamı için bağlantı URL'sini ayarlar veya linkUrl
değeri null
ise temizlenir.
// 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();
Parametreler
Ad | Tür | Açıklama |
---|---|---|
linkUrl | String | Ayarlanan bağlantı URL'si. |
Return
RichTextValueBuilder
— Zincirleme için bu oluşturucu.
setText(text)
Bu değere ait metni ayarlar ve mevcut metin stillerini siler. Yeni bir Zengin Metin oluştururken
değeri için bu değer setTextStyle(startOffset, endOffset, textStyle)
öncesinde çağrılmalıdır.
Parametreler
Ad | Tür | Açıklama |
---|---|---|
text | String | Bu değer için metin. |
Return
RichTextValueBuilder
— Zincirleme için bu oluşturucu.
setTextStyle(startOffset, endOffset, textStyle)
Bu değerin belirtilen alt dizesine bir metin stili uygular. Kaydırmalar 0 tabanlıdır ve görelidir
eklemesi gerekir. textStyle
, null
ise hiçbir şey yapmaz.
// Creates a Rich Text value for the text "HelloWorld", with "Hello" bolded, and "World" // italicized. var bold = SpreadsheetApp.newTextStyle().setBold(true).build(); var italic = SpreadsheetApp.newTextStyle().setItalic(true).build(); var value = SpreadsheetApp.newRichTextValue() .setText("HelloWorld") .setTextStyle(0, 5, bold) .setTextStyle(5, 10, italic) .build();
Parametreler
Ad | Tür | Açıklama |
---|---|---|
startOffset | Integer | Alt dize için (bu değerler dahil) başlangıç ofseti. |
endOffset | Integer | Alt dize için bitiş ofseti (hariç). |
textStyle | TextStyle | Ayarlanan metin stili. |
Return
RichTextValueBuilder
— Zincirleme için bu oluşturucu.
setTextStyle(textStyle)
Değerin tamamına metin stili uygular. Daha önce ayarlanmış metin stilleri yalnızca
textStyle
içindeki değerler doğrudan üzerine yazılır. textStyle
şu durumda hiçbir şey yapmaz:
null
.
// Creates a Rich Text value for the text "HelloWorld" with "Hello" bolded and italicized, // and "World" only italicized. var bold = SpreadsheetApp.newTextStyle().setBold(true).build(); var italic = SpreadsheetApp.newTextStyle().setItalic(true).build(); var value = SpreadsheetApp.newRichTextValue() .setText("HelloWorld") .setTextStyle(0, 5, bold) .setTextStyle(italic) .build();
Parametreler
Ad | Tür | Açıklama |
---|---|---|
textStyle | TextStyle | Ayarlanan metin stili. |
Return
RichTextValueBuilder
— Zincirleme için bu oluşturucu.