IScrollSnapPointsInfo.HorizontalSnapPointsChanged Ereignis
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Tritt auf, wenn sich die Messungen für horizontale Einrastpunkte ändern.
// 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)