Copyright © 2005-2019 MultiMedia Soft

PlayListExecute method

Previous pageReturn to chapter overviewNext page

Remarks

 

Executes the playlist associated with the specified player.

 

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

 

 

Syntax

 

[Visual Basic]

Public Function PlayListExecute (

nPlayerIndex as Int16,

bFromBegin as Boolean

) as enumErrorCodes


 

[C#]

public enumErrorCodes PlayListExecute (

Int16 nPlayerIndex,

bool bFromBegin

);


 

[C++]

public: enumErrorCodes PlayListExecute (

Int16 nPlayerIndex,

bool bFromBegin

);


 

 

Parameter

Description

 

 

nPlayerIndex

Number representing the zero-based index of the player that owns the playlist

bFromBegin

Boolean value that specifies to execute the playlist from the beginning (only considered in case of a previous stopped playlist execution).

Supported values are the following:

Value

Meaning

false

Doesn't execute the playlist from the beginning

true

Executes the playlist from the beginning

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.NOERROR (0)

The method call was successful.