Google Apps Script API
    Preparing search index...

    Access and modify bandings, the color patterns applied to rows or columns of a range. Each banding consists of a range and a set of colors for rows, columns, headers, and footers.

    interface Banding {
        copyTo(range: GoogleAppsScript.Spreadsheet.Range): Banding;
        getFirstColumnColor(): string;
        getFirstRowColor(): string;
        getFooterColumnColor(): string;
        getFooterRowColor(): string;
        getHeaderColumnColor(): string;
        getHeaderRowColor(): string;
        getRange(): GoogleAppsScript.Spreadsheet.Range;
        getSecondColumnColor(): string;
        getSecondRowColor(): string;
        remove(): void;
        setFirstColumnColor(color: string): Banding;
        setFirstRowColor(color: string): Banding;
        setFooterColumnColor(color: string): Banding;
        setFooterRowColor(color: string): Banding;
        setHeaderColumnColor(color: string): Banding;
        setHeaderRowColor(color: string): Banding;
        setRange(range: GoogleAppsScript.Spreadsheet.Range): Banding;
        setSecondColumnColor(color: string): Banding;
        setSecondRowColor(color: string): Banding;
    }
    Index

    Methods