Error processing SSI file
LEADTOOLS JavaScript (Leadtools.Controls)

Tap Event

Show in webframe
Occurs when the user performs a tap operation with either the mouse or a finger.
Syntax
add_tap(function(sender, e))
tap.add(function(sender, e))
remove_tap(function(sender, e))
tap.remove(function(sender, e))
    

The Tap event will fire when any of the following occurs:

  • On a device that supports mouse and TapOnDown is set to true: When the user presses down the left button and the mouse is over a EventsTarget.
  • 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 a EventsTarget.
  • On a device that supports touch and TapOnDown is set to true: When the user presses a finger down on EventsTarget.
  • On a device that supports touch and TapOnDown is set to false: When the user presses and then releases a finger on a EventsTarget.
Event Data
Parameter Type Description
sender 'var' The source of the event.
e InteractiveEventArgs The event data.
See Also
Error processing SSI file