MonobjcMonobjc Documented Class Library
CAAnimation..::..AnimationDidStopFinishedEventHandler Delegate
NamespacesMonobjc.QuartzCoreCAAnimationCAAnimation..::..AnimationDidStopFinishedEventHandler

Called when the animation completes its active duration or is removed from the object it is attached to.

Original signature is '- (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void AnimationDidStopFinishedEventHandler(
	CAAnimation theAnimation,
	bool flag
)
Public Delegate Sub AnimationDidStopFinishedEventHandler ( _
	theAnimation As CAAnimation, _
	flag As Boolean _
)
public delegate void AnimationDidStopFinishedEventHandler(
	CAAnimation^ theAnimation, 
	bool flag
)
Parameters
theAnimation (CAAnimation)
The CAAnimation instance that stopped animating.
flag (Boolean)
If YES, the animation reached the end of its active duration without being removed.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)