CADability dotNET
Starts the realtime animation. speed provides a time factor, 1.0 is real time. The method returns immediately. There may bee zooming and scrolling during the animation. The animation may be stopped at any time and stops automatically when endTime is reached. Each discrete frame that is displayed fires the NextStepEvent to enable the user of this class to provide some additional display changes or other tasks.

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public void StartAnimation(
	ISchedule schedule,
	double startTime,
	double endTime,
	double speed
)
Visual Basic
Public Sub StartAnimation ( _
	schedule As ISchedule, _
	startTime As Double, _
	endTime As Double, _
	speed As Double _
)
Visual C++
public:
void StartAnimation(
	ISchedule^ schedule, 
	double startTime, 
	double endTime, 
	double speed
)

Parameters

schedule
Type: CADability..::..ISchedule
startTime
Type: System..::..Double
Start time for the animation
endTime
Type: System..::..Double
Stop time for the animation
speed
Type: System..::..Double
Speed factor

See Also