Remarks
Obtains the current timings for lyrics notification events. Timings can be modified through the LrcNotifTimingsSet method.
See the How to manage lyrics coming from LRC files section for further details about LRC files.
Syntax
[Visual Basic]
Public Function LrcNotifTimingsGet (
ByRef nAdvanceTimeFullLine as Int32,
ByRef nRealTimeCompensation as Int32
) as string
|
|
[C#]
public string LrcNotifTimingsGet (
ref Int32 nAdvanceTimeFullLine,
ref Int32 nRealTimeCompensation
);
|
|
[C++]
public: string LrcNotifTimingsGet (
Int32 __gc *nAdvanceTimeFullLine,
Int32 __gc *nRealTimeCompensation
);
|
|
Parameter
|
Description
|
|
|
nAdvanceTimeFullLine
|
Reference that, on return from the method call, will contain the advance time, expressed in milliseconds, used to fire the LrcAdvanceTimeLineFull event.
|
nRealTimeCompensation
|
Reference that, on return from the method call, will contain the time compensation, expressed in milliseconds, used to fire the LrcRealTimeLineFull and LrcRealTimeLinePortion events.
|
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
|
|