Remarks
Occurs when the joining session of two mono sound files is completed. The joining session is started through a previous call to the JoinFilesFromDisk method.
Syntax
[Visual Basic]
Public Event SoundsJoinDone As SoundsJoinDoneEventHandler
|
|
[C#]
public event SoundsJoinDoneEventHandler SoundsJoinDone;
|
|
[C++]
public: __event SoundsJoinDoneEventHandler SoundsJoinDone;
|
|
Event Data
The event handler receives an argument of type SoundsJoinDoneEventArgs 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)
|
Sounds were joined successfully.
|
|
|