Copyright © 2005-2023 MultiMedia Soft

TracksBoardLoadingDone event

Previous pageReturn to chapter overviewNext page

Remarks

 

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

 

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

 

 

Syntax

 

[Visual Basic]

Public Event TracksBoardLoadingDone As TracksBoardLoadingDoneEventHandler


 

[C#]

public event TracksBoardLoadingDoneEventHandler TracksBoardLoadingDone;


 

[C++]

public: __event TracksBoardLoadingDoneEventHandler TracksBoardLoadingDone;


 

 

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 session was loaded successfully.