Do you mean that you want the first half to be centered on top and then the second part below it to be left alinged?
this is a very simple example you can test for yourself. If indeed i'm understanding you correctly
richTextBox1.AppendText("Header");
richTextBox1.SelectionAlignment = HorizontalAlignment.Center;
richTextBox1.AppendText(System.Environment.NewLine);
richTextBox1.AppendText("First Line");
richTextBox1.SelectionAlignment = HorizontalAlignment.Left;