AdvancedPhotoCapture.AllPhotosCaptured イベント

定義

高度な写真キャプチャに必要なすべてのフレームがキャプチャされたときに発生します。

// Register
event_token AllPhotosCaptured(TypedEventHandler<AdvancedPhotoCapture, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
AdvancedPhotoCapture::AllPhotosCaptured_revoker AllPhotosCaptured(auto_revoke_t, TypedEventHandler<AdvancedPhotoCapture, IInspectable const&> const& handler) const;
public event TypedEventHandler<AdvancedPhotoCapture,object> AllPhotosCaptured;
function onAllPhotosCaptured(eventArgs) { /* Your code */ }
advancedPhotoCapture.addEventListener("allphotoscaptured", onAllPhotosCaptured);
advancedPhotoCapture.removeEventListener("allphotoscaptured", onAllPhotosCaptured);
- or -
advancedPhotoCapture.onallphotoscaptured = onAllPhotosCaptured;
Public Custom Event AllPhotosCaptured As TypedEventHandler(Of AdvancedPhotoCapture, Object) 

イベントの種類

注釈

高度な写真キャプチャ操作では、結果の画像を生成するために複数のフレームをキャプチャして処理する必要がある場合があります。 このイベントは、キャプチャされたフレームの画像処理が完了した後にのみ発生する CaptureAsync の呼び出しが完了するのを待つのではなく、キャプチャ デバイスが使用可能になったらすぐに別の高度な写真キャプチャを開始できるソース フレームがキャプチャされたときに通知します。

適用対象