IScrollController.ScrollByRequested É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 défilement d’un delta de décalage particulier est demandé.
// Register
event_token ScrollByRequested(TypedEventHandler<IScrollController, ScrollControllerScrollByRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void ScrollByRequested(event_token const* cookie) const;
// Revoke with event_revoker
IScrollController::ScrollByRequested_revoker ScrollByRequested(auto_revoke_t, TypedEventHandler<IScrollController, ScrollControllerScrollByRequestedEventArgs const&> const& handler) const;
event TypedEventHandler<IScrollController,ScrollControllerScrollByRequestedEventArgs> ScrollByRequested;
function onScrollByRequested(eventArgs) { /* Your code */ }
iScrollController.addEventListener("scrollbyrequested", onScrollByRequested);
iScrollController.removeEventListener("scrollbyrequested", onScrollByRequested);
- or -
iScrollController.onscrollbyrequested = onScrollByRequested;
Event ScrollByRequested As TypedEventHandler(Of IScrollController, ScrollControllerScrollByRequestedEventArgs)