Node upon which to listen.
Event name to listen to (e.g. 'mousedown').
The value of 'this' in the function.
Function to call when event is triggered.
Optionalopt_noCaptureIdentifier: booleanTrue if triggering on this event should not block execution of other event handlers on this touch or other simultaneous touches. False by default.
Optionalopt_noPreventDefault: booleanTrue if triggering on this event should prevent the default handler. False by default. If opt_noPreventDefault is provided, opt_noCaptureIdentifier must also be provided.
Opaque data that can be passed to unbindEvent_.
Bind an event handler that can be ignored if it is not part of the active touch stream. Use this for events that either start or continue a multi-part gesture (e.g. mousedown or mousemove, which may be part of a drag or click).