ScrollPresenter.ViewChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when manipulations such as scrolling and zooming have caused the view to change.
// Register
event_token ViewChanged(TypedEventHandler<ScrollPresenter, IInspectable const&> const& handler) const;
// Revoke with event_token
void ViewChanged(event_token const* cookie) const;
// Revoke with event_revoker
ScrollPresenter::ViewChanged_revoker ViewChanged(auto_revoke_t, TypedEventHandler<ScrollPresenter, IInspectable const&> const& handler) const;
public event TypedEventHandler<ScrollPresenter,object> ViewChanged;
function onViewChanged(eventArgs) { /* Your code */ }
scrollPresenter.addEventListener("viewchanged", onViewChanged);
scrollPresenter.removeEventListener("viewchanged", onViewChanged);
- or -
scrollPresenter.onviewchanged = onViewChanged;
Public Custom Event ViewChanged As TypedEventHandler(Of ScrollPresenter, Object)
Event Type
TypedEventHandler<ScrollPresenter,IInspectable>