TextTrackCues represent a string of text that will be displayed for some duration of time on a TextTrack. This includes the start and end times that the cue will be displayed. A TextTrackCue cannot be used directly, instead one of the derived types (e.g. VTTCue) must be used.

interface TextTrackCue {
    endTime: number;
    id: string;
    onenter: null | ((this, ev) => any);
    onexit: null | ((this, ev) => any);
    pauseOnExit: boolean;
    startTime: number;
    track: null | TextTrack;
    addEventListener<K>(type, listener, options?): void;
    addEventListener(type, listener, options?): void;
    dispatchEvent(event): boolean;
    removeEventListener<K>(type, listener, options?): void;
    removeEventListener(type, listener, options?): void;
}

Hierarchy

  • EventTarget
    • TextTrackCue

Properties

endTime: number

Returns the text track cue end time, in seconds.

Can be set.

id: string

Returns the text track cue identifier.

Can be set.

onenter: null | ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Parameters

      Returns any

onexit: null | ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Parameters

      Returns any

pauseOnExit: boolean

Returns true if the text track cue pause-on-exit flag is set, false otherwise.

Can be set.

startTime: number

Returns the text track cue start time, in seconds.

Can be set.

track: null | TextTrack

Returns the TextTrack object to which this text track cue belongs, if any, or null otherwise.

Methods

  • Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

    Parameters

    • event: Event

    Returns boolean

  • Type Parameters

    Parameters

    Returns void

  • Parameters

    Returns void

Generated using TypeDoc