Table of Contents

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 int

The 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

int

Methods

GetCueById(string)

Gets the cue with the specified id.

[DomName("getCueById")]
IVideoTrack GetCueById(string id)

Parameters

id string

The HTML id of the cue.

Returns

IVideoTrack

The cue with the given id, if any.