Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
RecordingFinalizationDone event 
 
Remarks 
 
Occurs when the finalization of a recording session is completed: during the finalization process a new recording session is appended, mixed or inserted into a previous one. 
 
For further details see the How to perform a recording session section. 
 
 
Syntax 
 
[Visual Basic] 
Public Event RecordingFinalizationDone As RecordingFinalizationDoneEventHandler
 
[C#] 
public event RecordingFinalizationDoneEventHandler RecordingFinalizationDone;
 
[C++] 
public: __event RecordingFinalizationDoneEventHandler RecordingFinalizationDone;
 
 
Event Data 
 
The event handler receives an argument of type RecordingFinalizationDoneEventArgs. 
 
RecordingFinalizationDoneEventArgs members
Description
 
 
nResult
The result of the finalization process.  
 
Value
Meaning
 
 
Negative value
An error occurred, check the LastError property value in order to see the error code meaning
enumErrorCodes.ERR_NOERROR (0)
The sound was exported successfully.
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents