BB FlashBack SDK: FBRecorder

PauseAndSave

Description

Pauses recording and saves what has been recorded up to this point to the file defined by the FBRecorder::Filename property. This method also sets the movie filename for subsequent recording after the pause.

Events recorded after calling this method are saved into a new file.

Syntax

[C#/C++]
public: Bool PauseAndSave(BSTR NextFileName, Bool ResetCounter)

[VB.NET]
Public Overridable Function PauseAndSave(String NextFileName, Boolean ResetCounter) As Boolean
 

Remarks

To continue recording, set FBRecorder::Pause to False. Everything recorded after the pause will be saved to the movie file set by the NextFileName parameter.

Return values

Returns True if recording is successfully paused and saved to a movie file. Returns False if the save was not successful.
 

Parameters

NextFileName (in) : name of the file into which activity recorded after the pause will be saved.

ResetCounter (in) : resets to zero the IDs of objects (textboxes, images, markers) in the new movie file that FBRecorder continues to record after saving.

i.e. set this to True to have the IDs of objects in this continued recording start from zero. Set this to False to have object IDs continue on from the saved recording.
 

See Also

RecordMode property, Pause property, Stop method, Filename property