The type of value associated with the interactive object's handler
Optional ReadonlyinteractionThe interaction handler that generated this event (may be undefined)
Optional ReadonlyisSelection state for checkbox/radio button events (undefined for basic buttons)
ReadonlypointerPointer identifier for multitouch support (defaults to 1 for primary pointer)
ReadonlytypeThe 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
interactionHandlermay be undefined in some contextsisSelectedis only meaningful for checkbox and radio button eventspointerIddefaults to 1 for single-pointer interactionsSee