Google Apps Script API
    Preparing search index...

    A stylized text string used to represent cell text. Substrings of the text can have different text styles.

    A run is the longest unbroken substring having the same text style. For example, the sentence "This kid has two apples." has four runs: ["This ", "kid ", "has two ", "apples."].

    interface RichTextValue {
        copy(): RichTextValueBuilder;
        getEndIndex(): number;
        getLinkUrl(): string;
        getLinkUrl(startOffset: number, endOffset: number): string;
        getRuns(): RichTextValue[];
        getStartIndex(): number;
        getText(): string;
        getTextStyle(): GoogleAppsScript.Spreadsheet.TextStyle;
        getTextStyle(
            startOffset: number,
            endOffset: number,
        ): GoogleAppsScript.Spreadsheet.TextStyle;
    }
    Index

    Methods