RichTextBox1.Text = "The quick brown horse jumps over the lazy fox."
RichTextBox1.Text &= Environment.NewLine
RichTextBox1.Text &= "This line will be editable, the first will not."
RichTextBox1.SelectionStart = 0
RichTextBox1.SelectionLength = RichTextBox1.Text.IndexOf(ControlChars.Lf)
RichTextBox1.SelectionProtected = True
RichTextBox1.SelectionStart = RichTextBox1.Text.Length + 1
richTextBox1.Text = "The quick brown horse jumps over the lazy fox.";
richTextBox1.Text += Environment.NewLine;
richTextBox1.Text += "This line will be editable, the first will not.";
richTextBox1.SelectionStart = 0;
richTextBox1.SelectionLength = richTextBox1.Text.IndexOf("\n");
richTextBox1.SelectionProtected = true;
richTextBox1.SelectionStart = richTextBox1.Text.Length + 1;