BB FlashBack SDK: FBRecorder

OnCloseOutputFile

Description

This event handler is called when FBRecorder has finished writing to the movie file. There may be a delay of a few seconds, depending on the size of the movie, between stopping recording and completing writes to the movie file.

Syntax

[C#/C++]
protected virtual void OnCloseOutputFile(void);

[VB.NET]
Protected Overridable Sub OnCloseOutputFile
 

  Setting the event handler

[C#]
MyRecorder.OnCloseOutputFile += new IFBRecorderEvents_OnCloseOutputFileHandler(MyOnCloseOutputFileHandler);
 

[VB]
AddHandler MyRecorder.OnCloseOutputFile AddressOf MyOnCloseOutputFileHandler
 

[Delphi]
MyRecorder.OnCloseOutputFile := MyOnCloseOutputFileHandler;
 

[C++ Builder]
MyRecorder->OnCloseOutputFile = MyOnCloseOutputFileHandler;

See Also

FBRecorder::Stop  FBRecorder::CloseFilesProgress