SheetXL - v0.3.20
    Preparing search index...

    Interface ISheetElement

    Type returned via ref property

    interface ISheetElement {
        isSheetElement: () => true;
        cancelEdit(): void;
        focusMovable(movable?: IMovable): Promise<boolean>;
        focusSheet(options?: FocusOptions): void;
        startEdit(event?: StartEditEvent): void;
        submitEdit(): void;
    }

    Hierarchy

    • HTMLDivElement
      • ISheetElement
    Index

    Properties

    isSheetElement: () => true

    For runtime introspection

    Methods

    • Returns void

    • Focus a specific float. If not provided will focus the first selected float.

      Parameters

      • Optionalmovable: IMovable

      Returns Promise<boolean>

      The focusMovable does not scroll. TODO - have this honor focus scroll options.

    • Focus the sheet

      Parameters

      • Optionaloptions: FocusOptions

      Returns void

    • Parameters

      • Optionalevent: StartEditEvent

      Returns void

    • Returns void