Remarks
Occurs when it's time to display in real-time a full line of text of the loaded lyrics LRC file. Timing can be fine tuned through the LrcNotifTimingsSet method.
See the How to manage lyrics coming from LRC files section for further details about LRC files.
Syntax
[Visual Basic]
LrcRealTimeLineFull (
ByVal nPlayer as Integer,
ByVal nLineIndex as Integer,
ByVal strLine as String,
ByVal nPosition as Long
)
|
|
[C++]
void LrcRealTimeLineFull (
short nPlayer,
short nItemIndex,
LPCTSTR strLine,
long nPosition
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the player that fired the event
|
nItemIndex
|
The zero based-index of the Line Time Tag
|
strLine
|
String containing the full line of text of the Line Time Tag
|
nPosition
|
Position, expressed in milliseconds, within the song of the Line Time Tag
|
|