Remarks
Loads a Lyrics LRC file that will be related to the current loaded song.
See the How to manage lyrics coming from LRC files section for further details about LRC files.
Syntax
[Visual Basic]
control.LrcLoad (
nPlayer as Integer,
strPathname as String
) as enumErrorCodes
|
|
[C++]
short control.LrcLoad (
short nPlayer,
LPCTSTR strPathname
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the involved player
|
strPathname
|
String containing the absolute pathname of the LRC file.
|
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.
|
|