Interface WorkbookAttributes

Workbook specific attributes

interface WorkbookAttributes {
    elementFormulaBar: (() => FormulaBarElement);
    elementSheet: (() => SheetElement);
    elementViewport: (() => HTMLElement);
    getModel: (() => IWorkbookModel);
    goto?: ((location) => Promise<IWorkbookRange>);
    isWorkbook: (() => true);
}

Hierarchy (view full)

Properties

elementFormulaBar: (() => FormulaBarElement)

Type declaration

elementSheet: (() => SheetElement)

Type declaration

elementViewport: (() => HTMLElement)

Type declaration

    • (): HTMLElement
    • Returns HTMLElement

getModel: (() => IWorkbookModel)

Type declaration

goto?: ((location) => Promise<IWorkbookRange>)

Goto to the location. This will return a promise that resolves to the range when complete.

Type declaration

isWorkbook: (() => true)

Type declaration

    • (): true
    • Returns true