Remarks
Obtains the number of songs (items) contained inside the playlist
For further details about playlists management see the How to create and manage a playlist tutorial.
Syntax
[Visual Basic]
Public Function PlayListGetCount (
nPlayerIndex as Int16
) as Int16
|
|
[C#]
public Int16 PlayListGetCount (
Int16 nPlayerIndex
);
|
|
[C++]
public: Int16 PlayListGetCount (
Int16 nPlayerIndex
);
|
|
Parameter
|
Description
|
|
|
nPlayerIndex
|
Number representing the zero-based index of the player that will own the new playlist
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
>= 0
|
The number of items available inside the playlist
|
|