Remarks
Obtains the number of Enhanced Time Tags stored inside the Lyrics LRC file. The text of each tag and its timing position, expressed in milliseconds, can be obtained through the LrcTimeTagsEnhGetAt method.
See the How to manage lyrics coming from LRC files section for further details about LRC files.
Syntax
[Visual Basic]
Public Function LrcTimeTagsEnhGetCount (
nPlayerIndex as Int16
) as Int32
|
|
[C#]
public Int32 LrcTimeTagsEnhGetCount (
Int16 nPlayerIndex
);
|
|
[C++]
public: Int32 LrcTimeTagsEnhGetCount (
Int16 nPlayerIndex
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the involved player
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
Value > 0
|
Number of Enhanced Time Tags
|
|