Enum PointerEventType
Defines the type of action associated with a pointer event, based on the W3C Pointer Events specification.
public enum PointerEventType
Fields
Cancel = 5The pointer input was canceled by the system. Corresponds to the "pointercancel" event.
Down = 2A pointer button has been pressed. Corresponds to the "pointerdown" event.
Enter = 1The pointer has entered the element or one of its descendants. Corresponds to the "pointerenter" event.
GotCapture = 8The pointer has been captured by the element. Corresponds to the "gotpointercapture" event.
Leave = 7The pointer has left the element and all its descendants. Corresponds to the "pointerleave" event.
LostCapture = 9The pointer capture has been released from the element. Corresponds to the "lostpointercapture" event.
Move = 3The pointer has moved while being active. Corresponds to the "pointermove" event.
Out = 6The pointer has moved off of the element's hit region. Corresponds to the "pointerout" event.
Over = 0The pointer has moved onto the element's hit region. Corresponds to the "pointerover" event.
Up = 4A pointer button has been released. Corresponds to the "pointerup" event.