IScrollController.ScrollByRequested Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando viene richiesto uno scorrimento in base a un differenziale di offset specifico.
// 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)