SheetXL - v0.3.20
    Preparing search index...

    Used to interactive with a dom element.

    • When dispatching keystrokes the target is used to determine if the keystroke can be consumed by the element.
    • Many commands will refocus the target after they have completed. The target focus will be called.
    interface ITarget {
        contains(element: Node): boolean;
        focus(): void;
    }
    Index

    Methods

    Methods

    • Used to determine if a dom element is contained with the group.

      Parameters

      • element: Node

      Returns boolean

      This is used for validating keystrokes and focus traversal.

    • Called after a command is executed.

      Returns void