ApplicationView.VisibleBoundsChanged 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.
This event is raised when the value of VisibleBounds changes, typically as a result of the status bar, app bar, or other chrome being shown or hidden.
// Register
event_token VisibleBoundsChanged(TypedEventHandler<ApplicationView, IInspectable const&> const& handler) const;
// Revoke with event_token
void VisibleBoundsChanged(event_token const* cookie) const;
// Revoke with event_revoker
ApplicationView::VisibleBoundsChanged_revoker VisibleBoundsChanged(auto_revoke_t, TypedEventHandler<ApplicationView, IInspectable const&> const& handler) const;
public event TypedEventHandler<ApplicationView,object> VisibleBoundsChanged;
function onVisibleBoundsChanged(eventArgs) { /* Your code */ }
applicationView.addEventListener("visibleboundschanged", onVisibleBoundsChanged);
applicationView.removeEventListener("visibleboundschanged", onVisibleBoundsChanged);
- or -
applicationView.onvisibleboundschanged = onVisibleBoundsChanged;
Public Custom Event VisibleBoundsChanged As TypedEventHandler(Of ApplicationView, Object)
Event Type
TypedEventHandler<ApplicationView,IInspectable>