GazeDeviceWatcherPreview.EnumerationCompleted 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 the GazeDeviceWatcherPreview finishes identifying the connected eye-tracker devices.
// 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)
Event Type
TypedEventHandler<GazeDeviceWatcherPreview,IInspectable>