ACAT.Extensions.Default.FunctionalAgents.LectureManager.LectureManagerMainForm.ProcessNextSpeakParagraphSentence C# (CSharp) Method

ProcessNextSpeakParagraphSentence() private method

Speak the next sentence in the paragraph
private ProcessNextSpeakParagraphSentence ( ) : void
return void
        private void ProcessNextSpeakParagraphSentence()
        {
            if (isLastSentence(_lastSentenceSpoken))
            {
                Log.Debug("REACHED END OF PARAGRAPH!");
                Speaking = false;
                textBox1.Focus();
                return;
            }
            else
            {
                speakNextSentence();
            }
        }