FaceDetectionEffect.FaceDetected 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 a face is detected. See FaceDetectedEventArgs.
// Register
event_token FaceDetected(TypedEventHandler<FaceDetectionEffect, FaceDetectedEventArgs const&> const& handler) const;
// Revoke with event_token
void FaceDetected(event_token const* cookie) const;
// Revoke with event_revoker
FaceDetectionEffect::FaceDetected_revoker FaceDetected(auto_revoke_t, TypedEventHandler<FaceDetectionEffect, FaceDetectedEventArgs const&> const& handler) const;
public event TypedEventHandler<FaceDetectionEffect,FaceDetectedEventArgs> FaceDetected;
function onFaceDetected(eventArgs) { /* Your code */ }
faceDetectionEffect.addEventListener("facedetected", onFaceDetected);
faceDetectionEffect.removeEventListener("facedetected", onFaceDetected);
- or -
faceDetectionEffect.onfacedetected = onFaceDetected;
Public Custom Event FaceDetected As TypedEventHandler(Of FaceDetectionEffect, FaceDetectedEventArgs)