BB FlashBack SDK: FBEditor

PlayEvent

Description

Event handler called during movie play back. It is called once for each frame drawn by the SDK code.
 

Syntax

[C#/C++]
public void PlayEvent (long Current, long Count)

[VB.NET]
public Sub PlayEvent (ByVal Current As Long, ByVal Count As Long)
 

Parameters

Current - the number of the frame that has just been drawn.

Count - the total number of frames in the movie.
 

Setting the event handler

[C#]
fbEditor.PlayEvent += new IFBEditorEvents_PlayEventEventHandler(EditorPlayEvent);
 

[VB]
AddHandler fbEditor.PlayEvent, AddressOf EditorPlayEvent
 

[Delphi]
FBEditor.OnPlayEvent := EditorPlayEvent;
 

[C++ Builder]
Editor->OnPlayEvent = EditorPlayEvent;

 

See Also

FBEditor::ProgressorEvent   FBEditor::SetProgressorCaption