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

parseAndDisplayText() private method

Parses the text into para and sentences and displays the text in the form
private parseAndDisplayText ( ) : void
return void
        private void parseAndDisplayText()
        {
            Invoke(new MethodInvoker(delegate()
            {
                textBox1.Text = LectureText;
                textBox1.Select(0, 0);
                parse();
                flagLongSentences();
                textBox1.Select(0, 0);
                textBox1.ScrollToCaret();
                textBox1.Focus();
            }));
        }