Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
BandingTheme is an enumeration that defines various complementary color themes for spreadsheet banding.
Each theme consists of complementary colors applied to cells based on banding settings.
You call an enum by using its parent class, name, and property, such as SpreadsheetApp.BandingTheme.LIGHT_GREY.
Several predefined color themes are available as properties of the BandingTheme enum, including LIGHT_GREY, CYAN, GREEN, and others.
BandingTheme
An enumeration of banding themes. Each theme consists of several complementary colors that are
applied to different cells based on the banding settings.
To call an enum, you call its parent class, name, and property. For example,
SpreadsheetApp.BandingTheme.LIGHT_GREY.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 UTC."],[],["BandingTheme defines color schemes for spreadsheet cell banding. Themes, accessed via `SpreadsheetApp.BandingTheme.PROPERTY`, apply complementary colors based on banding settings. Available themes include `LIGHT_GREY`, `CYAN`, `GREEN`, `YELLOW`, `ORANGE`, `BLUE`, `TEAL`, `GREY`, `BROWN`, `LIGHT_GREEN`, `INDIGO`, and `PINK`. Each theme is an `Enum` type, and the selection will determine the color combinations applied to banded cells.\n"]]