Direct3D11CaptureFramePool.FrameArrived Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Evento generado cuando se almacena un marco capturado en el grupo de fotogramas.
// Register
event_token FrameArrived(TypedEventHandler<Direct3D11CaptureFramePool, IInspectable const&> const& handler) const;
// Revoke with event_token
void FrameArrived(event_token const* cookie) const;
// Revoke with event_revoker
Direct3D11CaptureFramePool::FrameArrived_revoker FrameArrived(auto_revoke_t, TypedEventHandler<Direct3D11CaptureFramePool, IInspectable const&> const& handler) const;
public event TypedEventHandler<Direct3D11CaptureFramePool,object> FrameArrived;
function onFrameArrived(eventArgs) { /* Your code */ }
direct3D11CaptureFramePool.addEventListener("framearrived", onFrameArrived);
direct3D11CaptureFramePool.removeEventListener("framearrived", onFrameArrived);
- or -
direct3D11CaptureFramePool.onframearrived = onFrameArrived;
Public Custom Event FrameArrived As TypedEventHandler(Of Direct3D11CaptureFramePool, Object)
Tipo de evento
TypedEventHandler<Direct3D11CaptureFramePool,IInspectable>