Remarks
Creates a playlist with all of the tracks contained inside a CD.
For further details about playlists management see the How to create and manage a playlist tutorial.
Syntax
[Visual Basic]
Public Function PlayListLoadFromCd (
nPlayerIndex as Int16,
nDriveIndex as Int16
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes PlayListLoadFromCd (
Int16 nPlayerIndex,
Int16 nDriveIndex
);
|
|
[C++]
public: enumErrorCodes PlayListLoadFromCd (
Int16 nPlayerIndex,
Int16 nDriveIndex
);
|
|
Parameter
|
Description
|
|
|
nPlayerIndex
|
Number representing the zero-based index of the involved player
|
nDriveIndex
|
Number representing the zero-based index of the involved CD drive
|
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.
|
|