ToolTipsFactory

Object Model - The Animation class - Clear 

Deletes all AnimationFrames.

[Visual Basic]
Public Sub Clear()
[C#]
public void Clear();

Parameters

None

Description

This function is used to remove all AnimationFrames from the Animation-object. 

 

'Create a new Animation...

Dim myAnimation As Animation = New Animation

...

'Remove all frames from myAnimation...

myAnimation.Clear()

...