The type of value associated with the interactive object's handler
Optional
Readonly
interactionThe interaction handler that generated this event (may be undefined)
Optional
Readonly
isSelection state for checkbox/radio button events (undefined for basic buttons)
Readonly
pointerPointer identifier for multitouch support (defaults to 1 for primary pointer)
Readonly
typeThe type of pointer event that occurred
Event object passed to all pointer interaction event handlers.
This interface defines the standardized event payload that all interactive objects emit. It provides access to the event type, the interaction handler that generated the event, and selection state information when applicable.
Cross-Platform Support: These events work consistently across all pointer input types (mouse, touch, pen) thanks to the underlying PointerEvent implementation.
Example
Remarks
interactionHandler
may be undefined in some contextsisSelected
is only meaningful for checkbox and radio button eventspointerId
defaults to 1 for single-pointer interactionsSee