Interface PointerEvtListener

interface PointerEvtListener {
    onGestureCancel(): void;
    onPointerDown(event): boolean;
    onPointerMove(event): void;
    onPointerUp(event): void;
}

Methods

  • Called if a pointer that has been captured by this listener (by returning true from onPointerDown) is re-captured by another listener.

    When called, this method should cancel any changes being made by the current gesture.

    Returns void

Generated using TypeDoc

OpenSource licenses