Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
SoundExportDone event 
 
Remarks 
 
Occurs when an editing session of the recorded sound ends: an editing session can be started through a call to RecordedSound.RequestExportToFile,  RecordedSound.RequestExportToFileUsingCodec or  RecordedSound.RequestExportToFileUsingCodecWavFormat methods. 
 
 
Syntax 
 
[Visual Basic] 
Public Event SoundExportDone As SoundExportDoneEventHandler
 
[C#] 
public event SoundExportDoneEventHandler SoundExportDone;
 
[C++] 
public: __event SoundExportDoneEventHandler SoundExportDone;
 
 
Event Data 
 
The event handler receives an argument of type SoundExportDoneEventArgs. 
 
SoundExportDoneEventArgs members
Description
 
 
nResult
The result of the exporting session.  
 
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