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]
Public Function PlayListExecAt (
nPlayerIndex as Int16,
nIndex as Int16
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes PlayListExecAt (
Int16 nPlayerIndex,
Int16 nIndex
);
|
|
[C++]
public: enumErrorCodes PlayListExecAt (
Int16 nPlayerIndex,
Int16 nIndex
);
|
|
Parameter
|
Description
|
|
|
nPlayerIndex
|
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.NOERROR (0)
|
The method call was successful.
|
|