RecordingPauseCreatesNewFile
property
Delphi
property RecordingPauseCreatesNewFile: Boolean read GetRecordingPauseCreatesNewFile write SetRecordingPauseCreatesNewFile default DEF_RecordingPauseCreatesNewFile;
C++Builder
__property bool RecordingPauseCreatesNewFile = {read=GetRecordingPauseCreatesNewFile, write=SetRecordingPauseCreatesNewFile, default=0};
C#
public bool RecordingPauseCreatesNewFile { get; set; }
VB.NET
Public Property RecordingPauseCreatesNewFile As Boolean
C++/Qt
BOOL GetRecordingPauseCreatesNewFile ();
void SetRecordingPauseCreatesNewFile (BOOL Value);
Generates a new recording file each time the recording is paused. The new file is not created when resuming the recording, but rather when the recording is paused by invoking PauseRecording. By this way, the file is already created and opened when invoking ResumeRecording, so no frames are lost at this time. If the recording is stopped before invoking ResumeRecording, the new empty file (that has just been created before, when PauseRecording has been invoked) is deleted.