SheetXL - v0.3.20
    Preparing search index...

    Events for IMovable events.

    interface Events {
        onAnchorCoordsChange(source: IAnchored): void;
        onAnchorTypeChange(source: IMovable): void;
        onAnyChange(source: IMovable): void;
        onBoundsChange(source: IMovable): void;
        onClose(source: IAnchored): void;
        onDelete(source: IAnchored): void;
        onInvalidated(source: IAnchored): void;
        onNameChange(source: IMovable): void;
        onProtectedChange(source: IAnchored): void;
        onRequestFocus(source: IMovable): Promise<boolean>;
        onSelectionChange(source: IMovable): void;
    }
    Index

    Methods

    • Called when the anchor bounds are updated.

      Parameters

      Returns void

    • Called when the anchor type is updated.

      Parameters

      Returns void

    • Called when any property has changed.

      Parameters

      Returns void

    • Called when selection changes.

      Parameters

      Returns void

    • Called when the anchor transaction is closed.

      Parameters

      Returns void

    • Called when the anchor is removed.

      Parameters

      Returns void

    • Called when the state has been updated due to a undo/redo and a rerender is required.

      Parameters

      Returns void

    • Called when the name has changed.

      Parameters

      Returns void

    • Called when the anchor protection is updated.

      Parameters

      Returns void

    • Request that the movable become focused.

      Parameters

      Returns Promise<boolean>

      A promise indicating if the focus was honored.

      This should only be handled by one consumer.

    • Called when the isSelect status has changed.

      Parameters

      Returns void