How do I align the text in a RichTextBox?
Basically, the RTB contains:
\"--testing\"
Unless it is very necessary for you to use a rich textbox, you can simply use a textbox and choose alignment as
textbox.TextAlign = HorizontalAlignment.Center;/*could be left, right or center*/