SynthesizerState Enumeration

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Enumerates values for the state of the SpeechSynthesizer.

Namespace:  Microsoft.Speech.Synthesis
Assembly:  Microsoft.Speech (in Microsoft.Speech.dll)

Syntax

Visual Basic (Declaration)
Public Enumeration SynthesizerState
Visual Basic (Usage)
Dim instance As SynthesizerState
C#
public enum SynthesizerState

Members

Member nameDescription
ReadyIndicates that the SpeechSynthesizer is ready to generate speech from a prompt.
SpeakingIndicates that the SpeechSynthesizer is speaking.
PausedIndicates that the SpeechSynthesizer is paused.

Remarks

The State property uses SynthesizerState to indicate the current state of the SpeechSynthesizer. The PreviousState and State properties use SynthesizerState to indicate state of the SpeechSynthesizer when the StateChanged event is raised.

See Also