Occurs when the user performs a tap operation with either the mouse or a finger.
Object.defineProperty(SheetEditorInteractiveService.prototype,'tap',
get: function(),
set: function(value)
)
The Tap event will fire when any of the following occurs:
true
: When the user presses down the
left button and the mouse is over.On a device that supports mouse and TapOnDown is set to false
: When the user presses and then releases
the left button and the mouse is over.
On a device that supports touch and TapOnDown is set to true
: When the user presses a finger down.
false
: When the user presses and then releases
a finger.By handling tap actions, developers can implement direct responses to user inputs, such as highlighting selected ranges.
Parameter | Type | Description |
---|---|---|
sender | var | The source of the event |
e | SheetEditorInteractiveEventArgs | The event data |
SheetEditorInteractiveService Class