BB FlashBack SDK: FBRecorder

CloseFilesProgress

Description

This event handler is called to indicate progress in closing the movie file when recording stops.

Syntax

[C#/C++]
protected virtual void CloseFilesProgress (long current, long overall)

[VB.NET]
Protected Overridable Sub CloseFilesProgress(ByVal current As Integer, ByVal overall As Integer)

Parameters

current - the % progress in the current stage. There are 12 stages overall in closing the movie file.

overall - the % progress overall in closing the recording

Remarks

Use this event to display progress indicators while closing movie files after stopping recording.

Setting the event handler

[C#]
fbEditor.CloseFilesProgess += new IFBRecorderEvents_CloseFilesProgressHandler(MyCloseFilesProgressHandler);
 

[VB]
AddHandler MyRecorder.CloseFilesProgress, AddressOf MyCloseFilesProgressHandler
 

[Delphi]
MyRecorder.CloseFilesProgress := MyCloseFilesProgressHandler;
 

[C++ Builder]
MyRecorder->CloseFilesProgress = MyCloseFilesProgressHandler;

See Also

FBRecorder::Stop  FBRecorder::OnCloseOutputFile