ScrollView.AnchorRequested Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque le est sur le ScrollView
point de sélectionner un élément d’ancre.
// 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)