Exemple #1
0
 /// <summary>
 /// Pauses speech at the specified boundary constraint.
 /// </summary>
 /// <param name="speechBoundary">A constant describing whether speech should pause immediately or only after finishing the word currently being spoken.</param>
 /// <returns>true if speech has paused, or false otherwise.</returns>
 public static bool Pause(SpeechBoundary speechBoundary)
 {
     return(TTS_iOS.PauseSpeaking(speechBoundary));
 }
Exemple #2
0
 /// <summary>
 ///  Pauses speech at default boundary constraints.
 /// </summary>
 /// <returns>true if speech has paused, or false otherwise.</returns>
 public static bool Pause()
 {
     return(TTS_iOS.PauseSpeaking(DefaultSpeechBoundaryForPause));
 }