Google Apps Script API
    Preparing search index...

    Access boolean conditions in ConditionalFormatRules. Each conditional format rule may contain a single boolean condition. The boolean condition itself contains a boolean criteria (with values) and formatting settings. The criteria is evaluated against the content of a cell resulting in either a true or false value. If the criteria evaluates to true, the condition's formatting settings are applied to the cell.

    interface BooleanCondition {
        getBackground(): string;
        getBold(): boolean;
        getCriteriaType(): BooleanCriteria;
        getCriteriaValues(): any[];
        getFontColor(): string;
        getItalic(): boolean;
        getStrikethrough(): boolean;
        getUnderline(): boolean;
    }
    Index

    Methods