/// <summary> /// Stop speech. /// </summary> /// <param name="boundary">Whether to stop immediately or at word.</param> public static bool Stop(AVSpeechBoundary boundary = AVSpeechBoundary.Immediate) { if (_syn == null) { return(false); } return(_syn.StopSpeakingAtBoundary(boundary)); }
/// <summary> /// Stop speech. /// </summary> /// <param name="boundary">Whether to stop immediately or at word.</param> public static bool Stop(AVSpeechBoundary boundary = AVSpeechBoundary.Immediate) { if (_syn == null) return false; return _syn.StopSpeakingAtBoundary(boundary); }