|  | 
| AnimationControllerStartAnimation(Double, Boolean) Method | 
            StartAnimation method starts the animation in this AnimationController. If the animation was paused, this method continues the animation (is the same as 
ResumeAnimation method).
            When the subscribeToRenderingEvent parameter is true (by default), then animation controller subscribes to the WPF's RenderingEvent
            and automatically updates the animated objects by calling 
GetFrameNumber and 
GoToFrame(Double) methods. 
            If subscribeToRenderingEvent is false, user needs to manually call 
GetFrameNumber or other methods to update the animated objects.
            
 Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.2.9104.2045
 Syntax
Syntaxpublic virtual void StartAnimation(
	double startFrameNumber,
	bool subscribeToRenderingEvent = true
)
Parameters
- startFrameNumber  Double
- start frame number
- subscribeToRenderingEvent  Boolean  (Optional)
- when true (by default) animation controller subscribes to the WPF's RenderingEvent and automatically updates the animated objects by calling GoToFrame method
 See Also
See Also