THEOplayer > TextTrackCueList
Inherits from ReadonlyArray<TextTrackCue>. See parent page for inherited properties and methods.
List of text track cues.
Signature:
export interface TextTrackCueList extends ReadonlyArray<TextTrackCue>
Property |
Type |
Description |
---|---|---|
|
The number of text track cues in the list. |
Method |
Description |
---|---|
item(index: |
Return the text track cue at the requested index in the list. |
The number of text track cues in the list.
Signature:
readonly length: number;
Return the text track cue at the requested index in the list.
Signature:
item(index: number): TextTrackCue;
Parameter |
Type |
Description |
---|---|---|
index |
|
A |
The text track cue with index index
in the list.