BB FlashBack SDK: FBEditor

ProgressorEvent

Description

This event handler is called as an export or movie loading process progresses.

Note that this event is deprecated in favour of FBEditor::ProgressorEventEx which passes a value into the event handler indicating the event origin.
 

Syntax

[C#/C++]
public void ProgressorEvent (long Count, long Current, Bool* bStop)

[VB.NET]
Public Sub ProgressorEvent (ByVal Count As Long, ByVal Current As Long, ByRef bStop As Boolean)
 

Parameters

Count - the total number of steps in the process. The event handler may not be called for every step in the process.

Current - the number of the current stage.

bStop - set this to True to stop the process.
 

Remarks

The ProgressorEvent event handler is called from all exports, and movie loading.
 

Setting the event handler

[C#]
fbEditor.ProgressorEvent += new IFBEditorEvents_ProgressorEventEventHandler(EditorProgressorEvent);
 

[VB]
AddHandler fbEditor.ProgressorEvent, AddressOf EditorProgressorEvent
 

[Delphi]
FBEditor.OnProgressorEvent := EditorProgressorEvent;
 

[C++ Builder]
Editor->OnProgressorEvent = EditorProgressorEvent;

 

See Also

FBEditor::PlayEvent   FBEditor::SetProgressorCaption  FBEditor::GetProgressorCaption  FBEditor::ProgressorEventEx