Tetap teratur dengan koleksi Simpan dan kategorikan konten berdasarkan preferensi Anda.
NilaiTeksKaya
String teks bergaya yang digunakan untuk mewakili teks sel. Substring teks dapat memiliki gaya teks yang berbeda.
Run adalah substring terpanjang yang tidak terputus dan memiliki gaya teks yang sama. Misalnya, kalimat, "Anak ini membawa apel" memiliki 4 run: ['This ', 'child ', 'is carrying ', 'apples'].
String — URL link untuk nilai ini, atau null jika tidak ada link atau jika ada beberapa link yang berbeda.
getLinkUrl(startOffset, endOffset)
Menampilkan URL link untuk teks dari startOffset ke endOffset. Offset didasarkan pada 0 dan bersifat relatif terhadap teks sel, dengan offset awal bersifat inklusif dan offset akhir bersifat eksklusif.
Parameter
Nama
Jenis
Deskripsi
startOffset
Integer
Offset awal.
endOffset
Integer
Offset akhir.
Pulang pergi
String — URL link untuk nilai ini, atau null jika tidak ada link atau jika beberapa link yang berbeda berada dalam rentang yang ditentukan.
getRuns()
Menampilkan string Rich Text yang dibagi menjadi array run, dengan setiap run adalah substring terpanjang yang memiliki gaya teks yang konsisten.
Menampilkan gaya teks dari startOffset ke endOffset. Offset didasarkan pada 0 dan bersifat relatif terhadap teks sel, dengan offset awal bersifat inklusif dan offset akhir bersifat eksklusif.
Parameter
Nama
Jenis
Deskripsi
startOffset
Integer
Offset awal.
endOffset
Integer
Offset akhir.
Pulang pergi
TextStyle — Gaya teks substring tertentu dari nilai ini.
[[["Mudah dipahami","easyToUnderstand","thumb-up"],["Memecahkan masalah saya","solvedMyProblem","thumb-up"],["Lainnya","otherUp","thumb-up"]],[["Informasi yang saya butuhkan tidak ada","missingTheInformationINeed","thumb-down"],["Terlalu rumit/langkahnya terlalu banyak","tooComplicatedTooManySteps","thumb-down"],["Sudah usang","outOfDate","thumb-down"],["Masalah terjemahan","translationIssue","thumb-down"],["Masalah kode / contoh","samplesCodeIssue","thumb-down"],["Lainnya","otherDown","thumb-down"]],["Terakhir diperbarui pada 2025-07-26 UTC."],[[["\u003cp\u003e\u003ccode\u003eRichTextValue\u003c/code\u003e objects represent stylized text within a spreadsheet cell, allowing substrings to have varied styles.\u003c/p\u003e\n"],["\u003cp\u003eText is broken into "runs," which are the longest continuous substrings sharing the same style.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eRichTextValue\u003c/code\u003e class provides methods to access and manipulate text, styles, and links within these runs.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can retrieve individual runs, get/set text styles, and extract link URLs using dedicated methods.\u003c/p\u003e\n"],["\u003cp\u003eMethods like \u003ccode\u003ecopy()\u003c/code\u003e, \u003ccode\u003egetText()\u003c/code\u003e, \u003ccode\u003egetRuns()\u003c/code\u003e, and \u003ccode\u003egetTextStyle()\u003c/code\u003e offer manipulation of \u003ccode\u003eRichTextValues\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["RichTextValue\n\nA stylized text string used to represent cell text. Substrings of the text can have different\ntext styles.\n\nA *run* is the longest unbroken substring having the same text style. For example, the\nsentence, \"This **child** *is carrying* apples\" has 4 runs: `['This ', 'child ',\n'is carrying ', 'apples']`. \n\nMethods\n\n| Method | Return type | Brief description |\n|------------------------------------------------------------------------|------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|\n| [copy()](#copy()) | [RichTextValueBuilder](/apps-script/reference/spreadsheet/rich-text-value-builder) | Returns a builder for a Rich Text value initialized with the values of this Rich Text value. |\n| [getEndIndex()](#getEndIndex()) | `Integer` | Gets the end index of this value in the cell. |\n| [getLinkUrl()](#getLinkUrl()) | `String` | Returns the link URL for this value. |\n| [getLinkUrl(startOffset, endOffset)](#getLinkUrl(Integer,Integer)) | `String` | Returns the link URL for the text from `start``Offset` to `end``Offset`. |\n| [getRuns()](#getRuns()) | [RichTextValue[]](#) | Returns the Rich Text string split into an array of runs, wherein each run is the longest possible substring having a consistent text style. |\n| [getStartIndex()](#getStartIndex()) | `Integer` | Gets the start index of this value in the cell. |\n| [getText()](#getText()) | `String` | Returns the text of this value. |\n| [getTextStyle()](#getTextStyle()) | [TextStyle](/apps-script/reference/spreadsheet/text-style) | Returns the text style of this value. |\n| [getTextStyle(startOffset, endOffset)](#getTextStyle(Integer,Integer)) | [TextStyle](/apps-script/reference/spreadsheet/text-style) | Returns the text style of the text from `start``Offset` to `end``Offset`. |\n\nDetailed documentation \n\n`copy()` \nReturns a builder for a Rich Text value initialized with the values of this Rich Text value.\n\nReturn\n\n\n[RichTextValueBuilder](/apps-script/reference/spreadsheet/rich-text-value-builder) --- A builder for a Rich Text value.\n\n*** ** * ** ***\n\n`get``End``Index()` \nGets the end index of this value in the cell.\n\nReturn\n\n\n`Integer` --- The end index of this value in the cell.\n\n*** ** * ** ***\n\n`get``Link``Url()` \nReturns the link URL for this value.\n\nReturn\n\n\n`String` --- The link URL for this value, or `null` if there is no link or if there are\nmultiple different links.\n\n*** ** * ** ***\n\n`get``Link``Url(startOffset, endOffset)` \nReturns the link URL for the text from `start``Offset` to `end``Offset`. Offsets are 0\nbased and relative to the cell's text, with the start offset being inclusive and the end offset\nbeing exclusive.\n\nParameters\n\n| Name | Type | Description |\n|-----------------|-----------|-------------------|\n| `start``Offset` | `Integer` | The start offset. |\n| `end``Offset` | `Integer` | The end offset. |\n\nReturn\n\n\n`String` --- The link URL for this value, or `null` if there is no link or if multiple\ndifferent links are in the given range.\n\n*** ** * ** ***\n\n`get``Runs()` \nReturns the Rich Text string split into an array of runs, wherein each run is the longest\npossible substring having a consistent text style.\n\nReturn\n\n\n[RichTextValue[]](#) --- An array of runs.\n\n*** ** * ** ***\n\n`get``Start``Index()` \nGets the start index of this value in the cell.\n\nReturn\n\n\n`Integer` --- The start index of this value in the cell.\n\n*** ** * ** ***\n\n`get``Text()` \nReturns the text of this value.\n\nReturn\n\n\n`String` --- The text of this value.\n\n*** ** * ** ***\n\n`get``Text``Style()` \nReturns the text style of this value.\n\nReturn\n\n\n[TextStyle](/apps-script/reference/spreadsheet/text-style) --- The text style of this value.\n\n*** ** * ** ***\n\n`get``Text``Style(startOffset, endOffset)` \nReturns the text style of the text from `start``Offset` to `end``Offset`. Offsets are 0\nbased and relative to the cell's text, with the start offset being inclusive and the end offset\nbeing exclusive.\n\nParameters\n\n| Name | Type | Description |\n|-----------------|-----------|-------------------|\n| `start``Offset` | `Integer` | The start offset. |\n| `end``Offset` | `Integer` | The end offset. |\n\nReturn\n\n\n[TextStyle](/apps-script/reference/spreadsheet/text-style) --- The text style of the given substring of this value."]]