AdvancedPhotoCapture.OptionalReferencePhotoCaptured Evento

Definição

Gerado quando uma foto de referência para a operação de foto avançada foi capturada, em dispositivos que dão suporte a esse recurso.

// Register
event_token OptionalReferencePhotoCaptured(TypedEventHandler<AdvancedPhotoCapture, OptionalReferencePhotoCapturedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
AdvancedPhotoCapture::OptionalReferencePhotoCaptured_revoker OptionalReferencePhotoCaptured(auto_revoke_t, TypedEventHandler<AdvancedPhotoCapture, OptionalReferencePhotoCapturedEventArgs const&> const& handler) const;
public event TypedEventHandler<AdvancedPhotoCapture,OptionalReferencePhotoCapturedEventArgs> OptionalReferencePhotoCaptured;
function onOptionalReferencePhotoCaptured(eventArgs) { /* Your code */ }
advancedPhotoCapture.addEventListener("optionalreferencephotocaptured", onOptionalReferencePhotoCaptured);
advancedPhotoCapture.removeEventListener("optionalreferencephotocaptured", onOptionalReferencePhotoCaptured);
- or -
advancedPhotoCapture.onoptionalreferencephotocaptured = onOptionalReferencePhotoCaptured;
Public Custom Event OptionalReferencePhotoCaptured As TypedEventHandler(Of AdvancedPhotoCapture, OptionalReferencePhotoCapturedEventArgs) 

Tipo de evento

Comentários

Alguns dispositivos dão suporte ao retorno de uma foto de referência da operação de captura que pode ser consumida pelo aplicativo de chamada antes que todos os quadros de imagem da operação sejam capturados ou processados. Em dispositivos que não dão suporte ao retorno de uma foto de referência, esse evento nunca é gerado.

Aplica-se a