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
[C++]
short control.PlayListExecute (
short nPlayer,
short bFromBegin
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
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:
Mnemonic constant
|
Value
|
Meaning
|
BOOL_FALSE
|
0
|
Doesn't execute the playlist from the beginning
|
BOOL_TRUE
|
1
|
Executes the playlist from the beginning
|
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
enumErrorCodes.ERR_NOERROR (0)
|
The call was successful.
|
|