VariablePhotoSequenceCapture.PhotoCaptured Event

Definition

Occurs when a frame of a variable photo sequence is captured.

// 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) 

Event Type

Applies to