ScrollView.AnchorRequested 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 ScrollView
está a punto de seleccionar un elemento delimitador.
// Register
event_token AnchorRequested(TypedEventHandler<ScrollView, ScrollingAnchorRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void AnchorRequested(event_token const* cookie) const;
// Revoke with event_revoker
ScrollView::AnchorRequested_revoker AnchorRequested(auto_revoke_t, TypedEventHandler<ScrollView, ScrollingAnchorRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<ScrollView,ScrollingAnchorRequestedEventArgs> AnchorRequested;
function onAnchorRequested(eventArgs) { /* Your code */ }
scrollView.addEventListener("anchorrequested", onAnchorRequested);
scrollView.removeEventListener("anchorrequested", onAnchorRequested);
- or -
scrollView.onanchorrequested = onAnchorRequested;
Public Custom Event AnchorRequested As TypedEventHandler(Of ScrollView, ScrollingAnchorRequestedEventArgs)