Remarks
Obtains the string of text and the related timing position for a specific Line Time Tag inside the Lyrics LRC file. The total number of Line Time Tags stored inside the Lyrics LRC file can be obtained using the LrcTimeTagsSimpleGetCount method.
See the How to manage lyrics coming from LRC files section for further details about LRC files.
Syntax
[Visual Basic]
Public Function LrcTimeTagsSimpleGetAt (
nPlayerIndex as Int16,
nIndex as Int32,
ByRef nPosition as Int32
) as string
|
|
[C#]
public string LrcTimeTagsSimpleGetAt (
Int16 nPlayerIndex,
Int32 nIndex,
ref Int32 nPosition
);
|
|
[C++]
public: string LrcTimeTagsSimpleGetAt (
Int16 nPlayerIndex,
Int32 nIndex,
Int32 __gc *nPosition
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the involved player
|
nIndex
|
Zero-based index of the Line Time Tag
|
nPosition
|
Reference that, on return from the method call, will contain the Line Time Tag position expressed in milliseconds.
|
Return value
Value
|
Meaning
|
|
|
Empty string
|
The line was empty or an error occurred (see the LastError property for further error details)
|
Valid string
|
String containing the line of text
|
|