GazeInputSourcePreview.GazeEntered Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
// Register
event_token GazeEntered(TypedEventHandler<GazeInputSourcePreview, GazeEnteredPreviewEventArgs const&> const& handler) const;
// Revoke with event_token
void GazeEntered(event_token const* cookie) const;
// Revoke with event_revoker
GazeInputSourcePreview::GazeEntered_revoker GazeEntered(auto_revoke_t, TypedEventHandler<GazeInputSourcePreview, GazeEnteredPreviewEventArgs const&> const& handler) const;
public event TypedEventHandler<GazeInputSourcePreview,GazeEnteredPreviewEventArgs> GazeEntered;
function onGazeEntered(eventArgs) { /* Your code */ }
gazeInputSourcePreview.addEventListener("gazeentered", onGazeEntered);
gazeInputSourcePreview.removeEventListener("gazeentered", onGazeEntered);
- or -
gazeInputSourcePreview.ongazeentered = onGazeEntered;
Public Custom Event GazeEntered As TypedEventHandler(Of GazeInputSourcePreview, GazeEnteredPreviewEventArgs)