IScrollControllerPanningInfo.PanRequested Event

Definition

Occurs when a user attempts to initiate a pan with touch or a pen.

// Register
event_token PanRequested(TypedEventHandler<IScrollControllerPanningInfo, ScrollControllerPanRequestedEventArgs const&> const& handler) const;

// Revoke with event_token
void PanRequested(event_token const* cookie) const;

// Revoke with event_revoker
IScrollControllerPanningInfo::PanRequested_revoker PanRequested(auto_revoke_t, TypedEventHandler<IScrollControllerPanningInfo, ScrollControllerPanRequestedEventArgs const&> const& handler) const;
event TypedEventHandler<IScrollControllerPanningInfo,ScrollControllerPanRequestedEventArgs> PanRequested;
function onPanRequested(eventArgs) { /* Your code */ }
iScrollControllerPanningInfo.addEventListener("panrequested", onPanRequested);
iScrollControllerPanningInfo.removeEventListener("panrequested", onPanRequested);
- or -
iScrollControllerPanningInfo.onpanrequested = onPanRequested;
Event PanRequested As TypedEventHandler(Of IScrollControllerPanningInfo, ScrollControllerPanRequestedEventArgs) 

Event Type

Applies to