ScrollPresenter.ZoomStarting Event

Definition

/// [Windows.Foundation.Metadata.Experimental]
/// [add: Windows.Foundation.Metadata.Experimental]
/// [remove: Windows.Foundation.Metadata.Experimental]
// Register
event_token ZoomStarting(TypedEventHandler<ScrollPresenter, ScrollingZoomStartingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ScrollPresenter::ZoomStarting_revoker ZoomStarting(auto_revoke_t, TypedEventHandler<ScrollPresenter, ScrollingZoomStartingEventArgs const&> const& handler) const;
[Windows.Foundation.Metadata.Experimental]
[add: Windows.Foundation.Metadata.Experimental]
[remove: Windows.Foundation.Metadata.Experimental]
public event TypedEventHandler<ScrollPresenter,ScrollingZoomStartingEventArgs> ZoomStarting;
function onZoomStarting(eventArgs) { /* Your code */ }
scrollPresenter.addEventListener("zoomstarting", onZoomStarting);
scrollPresenter.removeEventListener("zoomstarting", onZoomStarting);
- or -
scrollPresenter.onzoomstarting = onZoomStarting;
Public Custom Event ZoomStarting As TypedEventHandler(Of ScrollPresenter, ScrollingZoomStartingEventArgs) 

Event Type

Attributes

Applies to