Remarks
Starts the playlist execution from the given position.
The usage of this method is disabled when the playlist execution has been started through the Fader.StartManualFading method.
For further details about playlists management see the How to create and manage a playlist tutorial.
Syntax
[Visual Basic]
control.PlayListExecAt (
nPlayer as Integer,
nIndex as Integer
) as enumErrorCodes
|
|
[C++]
short control.PlayListExecAt (
short nPlayer,
short nIndex
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the player that owns the playlist
|
nIndex
|
Number representing the zero-based position of the item to play.
|
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.
|
|