VariablePhotoSequenceCapture.PhotoCaptured 이벤트

정의

가변 사진 시퀀스의 프레임이 캡처될 때 발생합니다.

// Register
event_token PhotoCaptured(TypedEventHandler<VariablePhotoSequenceCapture, VariablePhotoCapturedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
VariablePhotoSequenceCapture::PhotoCaptured_revoker PhotoCaptured(auto_revoke_t, TypedEventHandler<VariablePhotoSequenceCapture, VariablePhotoCapturedEventArgs const&> const& handler) const;
public event TypedEventHandler<VariablePhotoSequenceCapture,VariablePhotoCapturedEventArgs> PhotoCaptured;
function onPhotoCaptured(eventArgs) { /* Your code */ }
variablePhotoSequenceCapture.addEventListener("photocaptured", onPhotoCaptured);
variablePhotoSequenceCapture.removeEventListener("photocaptured", onPhotoCaptured);
- or -
variablePhotoSequenceCapture.onphotocaptured = onPhotoCaptured;
Public Custom Event PhotoCaptured As TypedEventHandler(Of VariablePhotoSequenceCapture, VariablePhotoCapturedEventArgs) 

이벤트 유형

적용 대상