Copyright © 2005-2023 MultiMedia Soft

TracksBoardExportDone event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs when the exporting session of the TracksBoard is completed. The exporting session is started through a previous call to the TracksBoard.ExportToFile method.

 

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

 

 

Syntax

 

[Visual Basic]

Public Event TracksBoardExportDone As TracksBoardExportDoneEventHandler


 

[C#]

public event TracksBoardExportDoneEventHandler TracksBoardExportDone;


 

[C++]

public: __event TracksBoardExportDoneEventHandler TracksBoardExportDone;


 

 

Event Data

 

The event handler receives an argument of type DoneEventArg 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.