Optional
actionsOptional
preventIf true, the events of the pointer actions, e.g. click, will have their default action prevented.
Optional
preventIf true (default), then for press actions (and hover actions on touch screens) it will prevent starting a text selection.
One or more of of "click", "hover" or "press". If not specified, then all actions are enabled.
It can be a comma-separated list of PointerActions or an array of such actions.
For click actions, the start handler is called for every odd number of clicks (1st, 3rd, 5th, etc), and the end handler is called for every other click. It functions like a toggle.
For hover and press actions, the start handler is called when the pointer enters or presses down on the target respectively, and the end handler is called when the pointer leaves or comes off the target respectively.
Note that on touch screens, hover and press actions behave identically.