CompositionScopedBatch.Completed Event

Definition

Event triggered once all animations and effects in the CompositionScopedBatch have completed.

// Register
event_token Completed(TypedEventHandler<IInspectable, CompositionBatchCompletedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CompositionScopedBatch::Completed_revoker Completed(auto_revoke_t, TypedEventHandler<IInspectable, CompositionBatchCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<object,CompositionBatchCompletedEventArgs> Completed;
function onCompleted(eventArgs) { /* Your code */ }
compositionScopedBatch.addEventListener("completed", onCompleted);
compositionScopedBatch.removeEventListener("completed", onCompleted);
- or -
compositionScopedBatch.oncompleted = onCompleted;
Public Custom Event Completed As TypedEventHandler(Of Object, CompositionBatchCompletedEventArgs) 

Event Type

Applies to