ToolTipsFactory

Object Model - The Animation class - RemoveFrame 

Remove the AnimationFrame from the specified position in the frames-list. 

[Visual Basic]
Public Sub RemoveFrame(ByVal FrameNr As Integer)
[C#]
public void RemoveFrame(int frameNr);

Parameters

FrameNr

    The index zero-based index of the AnimationFrame to be removed.

Description

This method removes the AnimationFrame with the the specified FrameNr from the Animation frames-list.  

'Create a new Animation...

Dim myAnimation As Animation = New Animation

'Load an existing Animation from file

myAnimation.Load("C:\Temp\JurassicShark.afx")

...

'Lets remove a frame in the middle of the movie...

myAnimation.RemoveFrame(256)

...