@jsfkit/types
    Preparing search index...

    Type Alias Workbook

    A workbook is a collection of worksheets, styles, defined names, and other metadata. It's what's commonly known as a spreadsheet.

    type Workbook = {
        calculationProperties?: CalcProps;
        externals?: External[];
        formulas?: string[];
        name: string;
        names?: DefinedName[];
        sheets: Worksheet[];
        styles?: Style[];
        tables?: Table[];
        views?: WorkbookView[];
    }
    Index

    Properties

    calculationProperties?: CalcProps

    Directions on how formulas should be recalculated in the workbook.

    externals?: External[]

    External cells referenced by the workbook. An external cell is a cell in another workbook.

    formulas?: string[]

    Deduplicated formulas used in the workbook. Stored in R1C1 notation. Two formulas are considered to be the same when their respective representations in R1C1 notation, are identical.

    name: string

    Name of the workbook. In the case of a .xlsx file it will be the filename.

    names?: DefinedName[]

    An array of the workbook's defined names.

    sheets: Worksheet[]

    An ordered array of the worksheets in the workbook.

    styles?: Style[]

    Styles for cells in the workbook.

    tables?: Table[]

    Metadata on the workbook's tables.

    views?: WorkbookView[]

    The different display configurations saved for the workbook.