IScrollControllerPanningInfo.PanRequested Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando un usuario intenta iniciar un movimiento panorámico con entrada táctil o un lápiz.
// 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)