Constructor
new TextTrackCueList(cues)
Create an instance of this class..
Parameters:
Name | Type | Description |
---|---|---|
cues | Array | A list of cues to be initialized with |
- See
Members
length :number
The current number of TextTrackCue
s in the TextTrackCueList.
Type:
- number
Methods
getCueById(id) → {TextTrackCueList~TextTrackCue|null}
Get a TextTrackCue
that is currently in the TextTrackCueList
by id.
Parameters:
Name | Type | Description |
---|---|---|
id | string | The id of the cue that should be searched for. |
Returns:
A single cue or null if none was found.
- Type:
- TextTrackCueList~TextTrackCue |
null
Type Definitions
TextTrackCue
Type:
Properties- Object
Name | Type | Description |
---|---|---|
id | string | The unique id for this text track cue |
startTime | number | The start time for this text track cue |
endTime | number | The end time for this text track cue |
pauseOnExit | boolean | Pause when the end time is reached if true. |
- See