Copyright © 2005-2019 MultiMedia Soft

LrcLoad method

Previous pageReturn to chapter overviewNext page

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]

Public Function LrcLoad (

nPlayerIndex as Int16,

strPathname as string

) as enumErrorCodes


 

[C#]

public enumErrorCodes LrcLoad (

Int16 nPlayerIndex,

string strPathname

);


 

[C++]

public: enumErrorCodes LrcLoad (

Int16 nPlayerIndex,

string 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.