Remarks
Occurs when the exporting session of the sound under editing is completed. The exporting session is started through a previous call to the ExportToFile method.
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 SoundExportDoneEventArg having the following parameters:
Parameters
|
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.
|
|
|