Table of Contents

Enum PointerEventType

Namespace
Xui.Core.UI.Input
Assembly
Core.dll

Defines the type of action associated with a pointer event, based on the W3C Pointer Events specification.

public enum PointerEventType

Fields

Cancel = 5

The pointer input was canceled by the system. Corresponds to the "pointercancel" event.

Down = 2

A pointer button has been pressed. Corresponds to the "pointerdown" event.

Enter = 1

The pointer has entered the element or one of its descendants. Corresponds to the "pointerenter" event.

GotCapture = 8

The pointer has been captured by the element. Corresponds to the "gotpointercapture" event.

Leave = 7

The pointer has left the element and all its descendants. Corresponds to the "pointerleave" event.

LostCapture = 9

The pointer capture has been released from the element. Corresponds to the "lostpointercapture" event.

Move = 3

The pointer has moved while being active. Corresponds to the "pointermove" event.

Out = 6

The pointer has moved off of the element's hit region. Corresponds to the "pointerout" event.

Over = 0

The pointer has moved onto the element's hit region. Corresponds to the "pointerover" event.

Up = 4

A pointer button has been released. Corresponds to the "pointerup" event.