SpeechSynthesizer.State Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém o estado de atual de fala do objeto SpeechSynthesizer.
public:
property System::Speech::Synthesis::SynthesizerState State { System::Speech::Synthesis::SynthesizerState get(); };
public System.Speech.Synthesis.SynthesizerState State { get; }
member this.State : System.Speech.Synthesis.SynthesizerState
Public ReadOnly Property State As SynthesizerState
Valor da propriedade
Retorna o estado atual de fala do objeto SpeechSynthesizer.
Exemplos
O exemplo a seguir ilustra o estado do SpeechSynthesizer antes, durante e depois da fala de um prompt.
using System;
using System.Threading;
using System.Speech.Synthesis;
namespace SampleSynthesis
{
class Program
{
static void Main(string[] args)
{
// Initialize a new instance of the SpeechSynthesizer.
SpeechSynthesizer synth = new SpeechSynthesizer() ;
// Configure the audio output.
synth.SetOutputToDefaultAudioDevice();
// Subscribe to the SpeakProgress event.
synth.SpeakProgress += new EventHandler<SpeakProgressEventArgs>(synth_SpeakProgress);
// Write the state of the SpeechSynthesizer to the console.
Console.WriteLine("Current Synthesizer state: " + synth.State + "\n");
// Speak a string asynchronously.
synth.SpeakAsync("What is your favorite color?");
// Write the state of the SpeechSynthesizer to the console while it is speaking.
Thread.Sleep(1000);
Console.WriteLine("\n - Current Synthesizer state: " + synth.State + " - \n");
// Write the state of the SpeechSynthesizer to the console after it is done speaking.
Thread.Sleep(2000);
Console.WriteLine("\nCurrent Synthesizer state: " + synth.State);
Console.WriteLine();
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
static void synth_SpeakProgress(object sender, SpeakProgressEventArgs e)
{
Console.WriteLine(e.Text);
}
}
}
Comentários
Para obter o novo estado do SpeechSynthesizer após a alteração, use a State propriedade da StateChangedEventArgs classe.