Interface ITextTrackCueList
- Namespace
- AngleSharp.Media.Dom
- Assembly
- AngleSharp.dll
Contains a list of text cues.
[DomName("TextTrackCueList")]
public interface ITextTrackCueList : IEnumerable<ITextTrackCue>, IEnumerable
- Inherited Members
- Extension Methods
Properties
this[int]
Gets the cue at the given index.
ITextTrackCue this[int index] { get; }
Parameters
index
intThe 0-based cue index.
Property Value
- ITextTrackCue
The cue at the position.
Length
Gets the number of cues.
[DomName("length")]
int Length { get; }
Property Value
Methods
GetCueById(string)
Gets the cue with the specified id.
[DomName("getCueById")]
IVideoTrack GetCueById(string id)
Parameters
id
stringThe HTML id of the cue.
Returns
- IVideoTrack
The cue with the given id, if any.