Copyright © 2008-2019 MultiMedia Soft

MixAutomationDone event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs at the end of a mixing automation session. The mixing automation session is started through a previous call to the MixAutomationExecute method.

 

For further details about synchronization through Events see the How to synchronize the container application through events tutorial.

 

 

Syntax

 

[Visual Basic]

Public Event MixAutomationDone As MixAutomationDoneEventHandler


 

[C#]

public event MixAutomationDoneEventHandler MixAutomationDone;


 

[C++]

public: __event MixAutomationDoneEventHandler MixAutomationDone;


 

 

Event Data

 

The event handler receives an argument of type MixAutomationDoneEventArgs having the following parameters:

 

Parameters

Description

 

 

nResult

The result of the mixing 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 mixing session was completed successfully.