SemanticZoom.ViewChangeStarted Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando se solicita un cambio de vista.
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" />