GazeDeviceWatcherPreview.Updated 이벤트

정의

보정과 같은 기존 아이 트래커 디바이스를 업데이트할 때 발생합니다.

// Register
event_token Updated(TypedEventHandler<GazeDeviceWatcherPreview, GazeDeviceWatcherUpdatedPreviewEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GazeDeviceWatcherPreview::Updated_revoker Updated(auto_revoke_t, TypedEventHandler<GazeDeviceWatcherPreview, GazeDeviceWatcherUpdatedPreviewEventArgs const&> const& handler) const;
public event TypedEventHandler<GazeDeviceWatcherPreview,GazeDeviceWatcherUpdatedPreviewEventArgs> Updated;
function onUpdated(eventArgs) { /* Your code */ }
gazeDeviceWatcherPreview.addEventListener("updated", onUpdated);
gazeDeviceWatcherPreview.removeEventListener("updated", onUpdated);
- or -
gazeDeviceWatcherPreview.onupdated = onUpdated;
Public Custom Event Updated As TypedEventHandler(Of GazeDeviceWatcherPreview, GazeDeviceWatcherUpdatedPreviewEventArgs) 

이벤트 유형

적용 대상

추가 정보