Thumb.DragDelta Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
// Register
event_token DragDelta(DragDeltaEventHandler const& handler) const;
// Revoke with event_token
void DragDelta(event_token const* cookie) const;
// Revoke with event_revoker
Thumb::DragDelta_revoker DragDelta(auto_revoke_t, DragDeltaEventHandler const& handler) const;
public event DragDeltaEventHandler DragDelta;
function onDragDelta(eventArgs) { /* Your code */ }
thumb.addEventListener("dragdelta", onDragDelta);
thumb.removeEventListener("dragdelta", onDragDelta);
- or -
thumb.ondragdelta = onDragDelta;
Public Custom Event DragDelta As DragDeltaEventHandler
<Thumb DragDelta="eventhandler"/>