AnnotatedScrollBar.Scrolling É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 lorsqu’un utilisateur défile à l’aide des boutons ou en interagissant avec la piste.
// Register
event_token Scrolling(TypedEventHandler<AnnotatedScrollBar, AnnotatedScrollBarScrollingEventArgs const&> const& handler) const;
// Revoke with event_token
void Scrolling(event_token const* cookie) const;
// Revoke with event_revoker
AnnotatedScrollBar::Scrolling_revoker Scrolling(auto_revoke_t, TypedEventHandler<AnnotatedScrollBar, AnnotatedScrollBarScrollingEventArgs const&> const& handler) const;
public event TypedEventHandler<AnnotatedScrollBar,AnnotatedScrollBarScrollingEventArgs> Scrolling;
function onScrolling(eventArgs) { /* Your code */ }
annotatedScrollBar.addEventListener("scrolling", onScrolling);
annotatedScrollBar.removeEventListener("scrolling", onScrolling);
- or -
annotatedScrollBar.onscrolling = onScrolling;
Public Custom Event Scrolling As TypedEventHandler(Of AnnotatedScrollBar, AnnotatedScrollBarScrollingEventArgs)
Type d'événement
Remarques
Vous pouvez annuler cet événement en définissant la propriété AnnotatedScrollBarScrollingEventArgs.Cancel sur true
. L’annulation de cet événement empêche le déclenchement des demandes de défilement IScrollController .