Remarks
Occurs when a lyrics LRC file is found and loaded.
See the How to manage lyrics coming from LRC files section for further details about LRC files.
For further details about synchronization through Events see the How to synchronize the container application through events tutorial.
Syntax
[Visual Basic]
Public Event LrcFileAvailable As LrcFileAvailableEventHandler
|
|
[C#]
public event LrcFileAvailableEventHandler LrcFileAvailable;
|
|
[C++]
public: __event LrcFileAvailableEventHandler* LrcFileAvailable;
|
|
Event Data
The event handler receives an argument of type LrcFileAvailableEventArgs having the following parameters:
Parameters
|
Description
|
|
|
nPlayerIndex
|
Number representing the zero-based index of the player that fired the event
|
bIsEnhanced
|
Boolean value that specifies if the loaded LRC file is simple or enhanced.
Supported values are the following:
Mnemonic constant
|
Meaning
|
false
|
LRC file is in simple format
|
true
|
LRC file is in enhanced format
|
|
|