Refer to the documentation on SelectionAlignment
property:
Use the above (in your scenario) like so:
richTextBox1.SelectAll();
richTextBox1.SelectionAlignment = HorizontalAlignment.Right;
solved How can i make that the lines in richTextBox1 will start from the right to the left?