Esempio n. 1
0
        public void SpeechStop()
        {
            if (synth != null)
            {
                synth.SpeechStop();
                synth = null;
            }

            if (recog != null)
            {
                recog.Stop();
                recog = null;
            }
        }
Esempio n. 2
0
 public void SpeechStart( PluginControl pc, string[] beeps)
 {
     synth = new WinSynth( pc, beeps);
     synth.SpeechStart();
 }
Esempio n. 3
0
        public void SpeechStop()
        {
            if (synth != null)
            {
                synth.SpeechStop();
                synth = null;
            }

            if (recog != null)
            {
                recog.Stop();
                recog = null;
            }
        }
Esempio n. 4
0
 public void SpeechStart(PluginControl pc, string[] beeps)
 {
     synth = new WinSynth(pc, beeps);
     synth.SpeechStart();
 }