The PointerEvent interface represents the state of a DOM event produced by a pointer such as the geometry of the contact point, the device type that generated the event, the amount of pressure that was applied on the contact surface, etc.

Documentation PointerEvent by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See also:

Constructor

new(type:String, ?eventInitDict:Null<PointerEventInit>)

Throws:

null

DOMError

Variables

read onlyheight:Int

The height (magnitude on the Y axis), in CSS pixels, of the contact geometry of the pointer.

read onlyisPrimary:Bool

Indicates if the pointer represents the primary pointer of this pointer type.

read onlypointerId:Int

A unique identifier for the pointer causing the event.

read onlypointerType:String

Indicates the device type that caused the event (mouse, pen, touch, etc.)

read onlypressure:Float

The normalized pressure of the pointer input in the range 0 to 1, where 0 and 1 represent the minimum and maximum pressure the hardware is capable of detecting, respectively.

read onlytangentialPressure:Float

The normalized tangential pressure of the pointer input (also known as barrel pressure or cylinder stress) in the range -1 to 1, where 0 is the neutral position of the control.

read onlytiltX:Int

The plane angle (in degrees, in the range of -90 to 90) between the Y-Z plane and the plane containing both the transducer (e.g. pen stylus) axis and the Y axis.

read onlytiltY:Int

The plane angle (in degrees, in the range of -90 to 90) between the X-Z plane and the plane containing both the transducer (e.g. pen stylus) axis and the X axis.

read onlytwist:Int

The clockwise rotation of the transducer (e.g. pen stylus) around its major axis in degrees, with a value in the range 0 to 359.

read onlywidth:Int

The width (magnitude on the X axis), in CSS pixels, of the contact geometry of the pointer.

Methods

getCoalescedEvents():Array<PointerEvent>

Returns a sequence of all PointerEvent instances that were coalesced into the dispatched pointermove event.

Inherited Variables

Defined by MouseEvent

read onlyaltKey:Bool

Returns true if the alt key was down when the mouse event was fired.

read onlybutton:Int

The button number that was pressed (if applicable) when the mouse event was fired.

read onlybuttons:Int

The buttons being depressed (if any) when the mouse event was fired.

read onlyclientX:Int

The X coordinate of the mouse pointer in local (DOM content) coordinates.

read onlyclientY:Int

The Y coordinate of the mouse pointer in local (DOM content) coordinates.

read onlyctrlKey:Bool

Returns true if the control key was down when the mouse event was fired.

read onlymetaKey:Bool

Returns true if the meta key was down when the mouse event was fired.

read onlymovementX:Int

The X coordinate of the mouse pointer relative to the position of the last mousemove event.

read onlymovementY:Int

The Y coordinate of the mouse pointer relative to the position of the last mousemove event.

read onlyoffsetX:Int

The X coordinate of the mouse pointer relative to the position of the padding edge of the target node.

read onlyoffsetY:Int

The Y coordinate of the mouse pointer relative to the position of the padding edge of the target node.

read onlyregion:String

Returns the id of the hit region affected by the event. If no hit region is affected, null is returned.

read onlyrelatedTarget:EventTarget

The secondary target for the event, if there is one.

read onlyscreenX:Int

The X coordinate of the mouse pointer in global (screen) coordinates.

read onlyscreenY:Int

The Y coordinate of the mouse pointer in global (screen) coordinates.

read onlyshiftKey:Bool

Returns true if the shift key was down when the mouse event was fired.

read onlyx:Int

read onlyy:Int

Defined by UIEvent

read onlydetail:Int

Returns a long with details about the event, depending on the event type.

read onlylayerX:Int

Returns the horizontal coordinate of the event relative to the current layer.

read onlylayerY:Int

Returns the vertical coordinate of the event relative to the current layer.

read onlypageX:Int

Returns the horizontal coordinate of the event relative to the whole document.

read onlypageY:Int

Returns the vertical coordinate of the event relative to the whole document.

read onlyrangeOffset:Int

read onlyrangeParent:Node

read onlyview:Window

Returns a WindowProxy that contains the view that generated the event.

read onlywhich:Int

Returns the numeric keyCode of the key pressed, or the character code (charCode) for an alphanumeric key pressed.

Defined by Event

read onlybubbles:Bool

A Boolean indicating whether the event bubbles up through the DOM or not.

cancelBubble:Bool

A historical alias to Event.stopPropagation(). Setting its value to true before returning from an event handler prevents propagation of the event.

read onlycancelable:Bool

A Boolean indicating whether the event is cancelable.

read onlycomposed:Bool

A Boolean value indicating whether or not the event can bubble across the boundary between the shadow DOM and the regular DOM.

read onlycurrentTarget:EventTarget

A reference to the currently registered target for the event. This is the object to which the event is currently slated to be sent; it's possible this has been changed along the way through retargeting.

read onlydefaultPrevented:Bool

Indicates whether or not event.preventDefault() has been called on the event.

read onlyeventPhase:Int

Indicates which phase of the event flow is being processed.

read onlyexplicitOriginalTarget:EventTarget

The explicit original target of the event (Mozilla-specific).

read onlyisTrusted:Bool

Indicates whether or not the event was initiated by the browser (after a user click for instance) or by a script (using an event creation method, like event.initEvent).

read onlyoriginalTarget:EventTarget

The original target of the event, before any retargetings (Mozilla-specific).

returnValue:Bool

A historical property introduced by Internet Explorer and eventually adopted into the DOM specification in order to ensure existing sites continue to work. Ideally, you should try to use Event.preventDefault() and Event.defaultPrevented instead, but you can use returnValue if you choose to do so.

read onlytarget:EventTarget

A reference to the target to which the event was originally dispatched.

read onlytimeStamp:Float

The time at which the event was created (in milliseconds). By specification, this value is time since epoch, but in reality browsers' definitions vary; in addition, work is underway to change this to be a DOMHighResTimeStamp instead.

read onlytype:String

The name of the event (case-insensitive).

Inherited Methods

Defined by MouseEvent

getModifierState(keyArg:String):Bool

Returns the current state of the specified modifier key. See the KeyboardEvent.getModifierState() for details.

@:value({ buttonArg : 0, metaKeyArg : false, shiftKeyArg : false, altKeyArg : false, ctrlKeyArg : false, clientYArg : 0, clientXArg : 0, screenYArg : 0, screenXArg : 0, detailArg : 0, cancelableArg : false, canBubbleArg : false })initMouseEvent(typeArg:String, canBubbleArg:Bool = false, cancelableArg:Bool = false, ?viewArg:Window, detailArg:Int = 0, screenXArg:Int = 0, screenYArg:Int = 0, clientXArg:Int = 0, clientYArg:Int = 0, ctrlKeyArg:Bool = false, altKeyArg:Bool = false, shiftKeyArg:Bool = false, metaKeyArg:Bool = false, buttonArg:Int = 0, ?relatedTargetArg:EventTarget):Void

Initializes the value of a MouseEvent created. If the event has already being dispatched, this method does nothing.

@:value({ inputSourceArg : 0, pressure : 0.0, buttonArg : 0, metaKeyArg : false, shiftKeyArg : false, altKeyArg : false, ctrlKeyArg : false, clientYArg : 0, clientXArg : 0, screenYArg : 0, screenXArg : 0, detailArg : 0, cancelableArg : false, canBubbleArg : false })initNSMouseEvent(typeArg:String, canBubbleArg:Bool = false, cancelableArg:Bool = false, ?viewArg:Window, detailArg:Int = 0, screenXArg:Int = 0, screenYArg:Int = 0, clientXArg:Int = 0, clientYArg:Int = 0, ctrlKeyArg:Bool = false, altKeyArg:Bool = false, shiftKeyArg:Bool = false, metaKeyArg:Bool = false, buttonArg:Int = 0, ?relatedTargetArg:EventTarget, pressure:Float = 0.0, inputSourceArg:Int = 0):Void

Defined by UIEvent

@:value({ aDetail : 0, aCancelable : false, aCanBubble : false })initUIEvent(aType:String, aCanBubble:Bool = false, aCancelable:Bool = false, ?aView:Window, aDetail:Int = 0):Void

Initializes a UIEvent object. If the event has already being dispatched, this method does nothing.

Defined by Event

composedPath():Array<EventTarget>

Returns the event’s path (objects on which listeners will be invoked). This does not include nodes in shadow trees if the shadow root was created with its ShadowRoot.mode closed.

@:value({ cancelable : false, bubbles : false })initEvent(type:String, bubbles:Bool = false, cancelable:Bool = false):Void

Initializes the value of an Event created. If the event has already being dispatched, this method does nothing.

preventDefault():Void

Cancels the event (if it is cancelable).

stopImmediatePropagation():Void

For this particular event, no other listener will be called. Neither those attached on the same element, nor those attached on elements which will be traversed later (in capture phase, for instance)

stopPropagation():Void

Stops the propagation of events further along in the DOM.