IScrollSnapPointsInfo.HorizontalSnapPointsChanged É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 les mesures des points d’ancrage horizontaux changent.
// Register
event_token HorizontalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void HorizontalSnapPointsChanged(event_token const* cookie) const;
// Revoke with event_revoker
IScrollSnapPointsInfo::HorizontalSnapPointsChanged_revoker HorizontalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
event System.EventHandler<object> HorizontalSnapPointsChanged;
function onHorizontalSnapPointsChanged(eventArgs) { /* Your code */ }
iScrollSnapPointsInfo.addEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
iScrollSnapPointsInfo.removeEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
- or -
iScrollSnapPointsInfo.onhorizontalsnappointschanged = onHorizontalSnapPointsChanged;
Event HorizontalSnapPointsChanged As EventHandler(Of Object)