Beispiel #1
0
 /// <summary>
 /// Stops all speech at the specified boundary constraint.
 /// </summary>
 /// <param name="speechBoundary">A constant describing whether speech should stop immediately or only after finishing the word currently being spoken.</param>
 /// <returns>true if speech has stopped, or false otherwise.</returns>
 public static bool Stop(SpeechBoundary speechBoundary)
 {
     return(TTS_iOS.StopSpeaking(speechBoundary));
 }
Beispiel #2
0
 /// <summary>
 ///  Stops all speech at default boundary constraints.
 /// </summary>
 /// <returns>true if speech has stopped, or false otherwise.</returns>
 public static bool Stop()
 {
     return(TTS_iOS.StopSpeaking(DefaultSpeechBoundaryForStop));
 }