IScrollControllerPanningInfo.PanRequested 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.
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)