Chartbreaker
    Preparing search index...

    Interface SpeechSynthesisUtterance

    The SpeechSynthesisUtterance interface of the Web Speech API represents a speech request.

    MDN Reference

    interface SpeechSynthesisUtterance {
        lang: string;
        onboundary:
            | null
            | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
        onend:
            | null
            | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
        onerror:
            | null
            | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisErrorEvent) => any);
        onmark:
            | null
            | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
        onpause:
            | null
            | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
        onresume:
            | null
            | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
        onstart:
            | null
            | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any);
        pitch: number;
        rate: number;
        text: string;
        voice: null | SpeechSynthesisVoice;
        volume: number;
        addEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(
            type: K,
            listener: (
                this: SpeechSynthesisUtterance,
                ev: SpeechSynthesisUtteranceEventMap[K],
            ) => any,
            options?: boolean | AddEventListenerOptions,
        ): void;
        addEventListener(
            type: string,
            listener: EventListenerOrEventListenerObject,
            options?: boolean | AddEventListenerOptions,
        ): void;
        dispatchEvent(event: Event): boolean;
        removeEventListener<K extends keyof SpeechSynthesisUtteranceEventMap>(
            type: K,
            listener: (
                this: SpeechSynthesisUtterance,
                ev: SpeechSynthesisUtteranceEventMap[K],
            ) => any,
            options?: boolean | EventListenerOptions,
        ): void;
        removeEventListener(
            type: string,
            listener: EventListenerOrEventListenerObject,
            options?: boolean | EventListenerOptions,
        ): void;
    }

    Hierarchy

    • EventTarget
      • SpeechSynthesisUtterance
    Index

    Properties

    lang: string

    The lang property of the SpeechSynthesisUtterance interface gets and sets the language of the utterance.

    MDN Reference

    onboundary:
        | null
        | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
    onend:
        | null
        | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
    onerror:
        | null
        | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisErrorEvent) => any)
    onmark:
        | null
        | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
    onpause:
        | null
        | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
    onresume:
        | null
        | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
    onstart:
        | null
        | ((this: SpeechSynthesisUtterance, ev: SpeechSynthesisEvent) => any)
    pitch: number

    The pitch property of the SpeechSynthesisUtterance interface gets and sets the pitch at which the utterance will be spoken at.

    MDN Reference

    rate: number

    The rate property of the SpeechSynthesisUtterance interface gets and sets the speed at which the utterance will be spoken at.

    MDN Reference

    text: string

    The text property of the The text may be provided as plain text, or a well-formed SSML document.

    MDN Reference

    voice: null | SpeechSynthesisVoice

    The voice property of the SpeechSynthesisUtterance interface gets and sets the voice that will be used to speak the utterance.

    MDN Reference

    volume: number

    The volume property of the SpeechSynthesisUtterance interface gets and sets the volume that the utterance will be spoken at.

    MDN Reference

    Methods

    • The dispatchEvent() method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.

      MDN Reference

      Parameters

      • event: Event

      Returns boolean