Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents  
 
LrcTimeTagsEnhGetAt method 
 
Remarks 
 
Obtains the string of text and the related timing position for a specific Enhanced Time Tag inside the Lyrics LRC file. The total number of Enhanced Time Tag stored inside the Lyrics LRC file can be obtained using the LrcTimeTagsEnhGetCount method. 
 
See the How to manage lyrics coming from LRC files section for further details about LRC files. 
 
 
Syntax 
 
[Visual Basic] 
control.LrcTimeTagsEnhGetAt
nPlayer as Integer, 
nIndex as Long, 
ByRef nPosition as Long, 
ByRef nDuration as Long 
) as Long
 
[C++] 
long control.LrcTimeTagsEnhGetAt
short nPlayer, 
long nIndex, 
long *nPosition, 
long *nDuration 
);
 
 
Parameter
Description
 
 
nPlayer
Number representing the zero-based index of the involved player
nIndex
Zero-based index of the Enhanced Time Tag
nPosition
Reference that, on return from the method call, will contain the Enhanced Time Tag position expressed in milliseconds.
nDuration
Reference that, on return from the method call, will contain the Enhanced Time Tag duration 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 text of the requested enhanced tag
 
 
 
 
 
 
 
 
 
 
Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents