SemanticZoom.ViewChangeStarted 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 a view change is requested.
public:
virtual event SemanticZoomViewChangedEventHandler ^ ViewChangeStarted;
// Register
event_token ViewChangeStarted(SemanticZoomViewChangedEventHandler const& handler) const;
// Revoke with event_token
void ViewChangeStarted(event_token const* cookie) const;
// Revoke with event_revoker
SemanticZoom::ViewChangeStarted_revoker ViewChangeStarted(auto_revoke_t, SemanticZoomViewChangedEventHandler const& handler) const;
public event SemanticZoomViewChangedEventHandler ViewChangeStarted;
function onViewChangeStarted(eventArgs) { /* Your code */ }
semanticZoom.addEventListener("viewchangestarted", onViewChangeStarted);
semanticZoom.removeEventListener("viewchangestarted", onViewChangeStarted);
- or -
semanticZoom.onviewchangestarted = onViewChangeStarted;
Public Custom Event ViewChangeStarted As SemanticZoomViewChangedEventHandler
<SemanticZoom ViewChangeStarted="eventhandler" />