THEOplayer Web SDK
    Preparing search index...

    Interface TextTrackCueList

    List of text track cues.

    interface TextTrackCueList {
        length: number;
        item(index: number): TextTrackCue;
        readonly [index: number]: TextTrackCue;
    }

    Hierarchy

    Indexable

    • readonly [index: number]: TextTrackCue

      Index signature to get the text track cue at the requested index in the list.

    Index

    Properties

    Methods

    Properties

    length: number

    The number of text track cues in the list.

    Methods

    • Return the text track cue at the requested index in the list.

      Parameters

      • index: number

        A number representing the index of a text track cue in the list.

      Returns TextTrackCue

      The text track cue with index index in the list.