Interface SheetRef

The reference to a sheet with in a workbook. These are used for finding sheet and determining it's location/visibility within a workbook.

interface SheetRef {
    id: number;
    name: string;
    sheet: ISheetModel;
    visibility: SheetVisibility;
}

Properties

Properties

id: number

This is a unique id for the sheet. Note - It is not the index and will not change if the sheet order is adjusted

name: string

The display name of the sheet

visibility: SheetVisibility

Default Value

SheetVisibility.Visible