Interface ICellProtection

interface ICellProtection {
    formulaHidden: boolean;
    isICellProtection: true;
    locked: boolean;
    toJSON(): Partial<{
        formulaHidden: string | Partial<boolean>;
        locked: string | Partial<boolean>;
    }>;
}

Hierarchy

Properties

formulaHidden: boolean

If the formula will be hidden when the worksheet is protected.

Remarks

This is called hidden in ooxml but in Excel object model it is formulaHidden.

Default Value

false
isICellProtection: true
locked: boolean

Hmm. This is specified in ooxml but not sure what behavior it has.

Default Value

true

Methods

  • Returns Partial<{
        formulaHidden: string | Partial<boolean>;
        locked: string | Partial<boolean>;
    }>