Copyright © 2005-2019 MultiMedia Soft

PlayListLoadDone event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs when the synchronized loading of a playlist is completed. A synchronized loading is started through a call to the PlayListLoadSync method.

 

For further details about playlists management see the How to create and manage a playlist tutorial.

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

 

 

Syntax

 

[Visual Basic]

Public Event PlayListLoadDone As PlayListLoadDoneEventHandler


 

[C#]

public event PlayListLoadDoneEventHandler PlayListLoadDone;


 

[C++]

public: __event PlayListLoadDoneEventHandler PlayListLoadDone;


 

 

Event Data

 

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

 

Parameters

Description

 

 

nPlayerIndex

Number representing the zero-based index of the player that fired the event

bSuccess

Boolean value that specifies if the playlist was loaded successfully.

Supported values are the following:

Value

Meaning

false

The request failed

true

The request succeeded