Compartir a través de


GazeDeviceWatcherPreview.Removed Evento

Definición

Se produce cuando ya no se detecta un dispositivo de seguimiento ocular existente.

// Register
event_token Removed(TypedEventHandler<GazeDeviceWatcherPreview, GazeDeviceWatcherRemovedPreviewEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GazeDeviceWatcherPreview::Removed_revoker Removed(auto_revoke_t, TypedEventHandler<GazeDeviceWatcherPreview, GazeDeviceWatcherRemovedPreviewEventArgs const&> const& handler) const;
public event TypedEventHandler<GazeDeviceWatcherPreview,GazeDeviceWatcherRemovedPreviewEventArgs> Removed;
function onRemoved(eventArgs) { /* Your code */ }
gazeDeviceWatcherPreview.addEventListener("removed", onRemoved);
gazeDeviceWatcherPreview.removeEventListener("removed", onRemoved);
- or -
gazeDeviceWatcherPreview.onremoved = onRemoved;
Public Custom Event Removed As TypedEventHandler(Of GazeDeviceWatcherPreview, GazeDeviceWatcherRemovedPreviewEventArgs) 

Tipo de evento

Se aplica a

Consulte también