Copyright © 2008-2023 MultiMedia Soft

SoundLoadingDone event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs at the end of a sound's loading session. The loading session is started through a previous call to one between LoadSound, LoadSoundEncrypted, LoadSoundFromClipboard, LoadSoundFromEditingSession, LoadSoundFromMemory, LoadSoundFromRawFile, LoadSoundFromRawMemory, LoadSoundFromRecordingSession methods.

 

This same event is also generated during the loading of a TracksBoard session started through 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 SoundLoadingDone As SoundLoadingDoneEventHandler


 

[C#]

public event SoundLoadingDoneEventHandler SoundLoadingDone;


 

[C++]

public: __event SoundLoadingDoneEventHandler SoundLoadingDone;


 

 

Event Data

 

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

 

Parameters

Description

 

 

bResult

Boolean value that specifies if the exporting session was completed successfully.

 

Supported values are the following:

 

Mnemonic Value

Meaning

false

An error occurred, check the LastError property value in order to see the error code

true

The editing session was completed successfully