ConnectedAnimation.Completed Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the animation is finished.
// Register
event_token Completed(TypedEventHandler<ConnectedAnimation, IInspectable const&> const& handler) const;
// Revoke with event_token
void Completed(event_token const* cookie) const;
// Revoke with event_revoker
ConnectedAnimation::Completed_revoker Completed(auto_revoke_t, TypedEventHandler<ConnectedAnimation, IInspectable const&> const& handler) const;
public event TypedEventHandler<ConnectedAnimation,object> Completed;
function onCompleted(eventArgs) { /* Your code */ }
connectedAnimation.addEventListener("completed", onCompleted);
connectedAnimation.removeEventListener("completed", onCompleted);
- or -
connectedAnimation.oncompleted = onCompleted;
Public Custom Event Completed As TypedEventHandler(Of ConnectedAnimation, Object)
Event Type
TypedEventHandler<ConnectedAnimation,IInspectable>