GazeDeviceWatcherPreview.EnumerationCompleted 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 gazeDeviceWatcherPreview termina de identificar los dispositivos de seguimiento ocular conectados.
// Register
event_token EnumerationCompleted(TypedEventHandler<GazeDeviceWatcherPreview, IInspectable const&> const& handler) const;
// Revoke with event_token
void EnumerationCompleted(event_token const* cookie) const;
// Revoke with event_revoker
GazeDeviceWatcherPreview::EnumerationCompleted_revoker EnumerationCompleted(auto_revoke_t, TypedEventHandler<GazeDeviceWatcherPreview, IInspectable const&> const& handler) const;
public event TypedEventHandler<GazeDeviceWatcherPreview,object> EnumerationCompleted;
function onEnumerationCompleted(eventArgs) { /* Your code */ }
gazeDeviceWatcherPreview.addEventListener("enumerationcompleted", onEnumerationCompleted);
gazeDeviceWatcherPreview.removeEventListener("enumerationcompleted", onEnumerationCompleted);
- or -
gazeDeviceWatcherPreview.onenumerationcompleted = onEnumerationCompleted;
Public Custom Event EnumerationCompleted As TypedEventHandler(Of GazeDeviceWatcherPreview, Object)
Tipo de evento
TypedEventHandler<GazeDeviceWatcherPreview,IInspectable>