Google Apps Script API
    Preparing search index...

    The rendered style of text in a cell.

    Text styles can have a corresponding RichTextValue. If the RichTextValue spans multiple text runs that have different values for a given text style read method, the method returns null. To avoid this, query for text styles using the Rich Text values returned by the RichTextValue.getRuns() method.

    interface TextStyle {
        copy(): GoogleAppsScript.Spreadsheet.TextStyleBuilder;
        getFontFamily(): string;
        getFontSize(): number;
        getForegroundColor(): string;
        getForegroundColorObject(): GoogleAppsScript.Spreadsheet.Color;
        isBold(): boolean;
        isItalic(): boolean;
        isStrikethrough(): boolean;
        isUnderline(): boolean;
    }
    Index

    Methods