Share via


ScrollView.ViewChanged Event

Definition

Occurs when manipulations such as scrolling and zooming have caused the view to change.

// Register
event_token ViewChanged(TypedEventHandler<ScrollView, IInspectable const&> const& handler) const;

// Revoke with event_token
void ViewChanged(event_token const* cookie) const;

// Revoke with event_revoker
ScrollView::ViewChanged_revoker ViewChanged(auto_revoke_t, TypedEventHandler<ScrollView, IInspectable const&> const& handler) const;
public event TypedEventHandler<ScrollView,object> ViewChanged;
function onViewChanged(eventArgs) { /* Your code */ }
scrollView.addEventListener("viewchanged", onViewChanged);
scrollView.removeEventListener("viewchanged", onViewChanged);
- or -
scrollView.onviewchanged = onViewChanged;
Public Custom Event ViewChanged As TypedEventHandler(Of ScrollView, Object) 

Event Type

Applies to