Попробуй так
SelectionRightIndent - Устанавливает отступ правого края текста от правого поля...
К примеру:
RichTextBox1.SelectionRightIndent = 100
***********************************************
Krasavica, писала правильно... :wink:
Пример из MDSN
[Visual Basic] В следующем примере демонстрируется создание правого поля в элементе управления RichTextBox с помощью свойства SelectionRightIndent. В примере предполагается наличие формы, содержащей элемент управления RichTextBox с именем richTextBox1, а также что код вызывается из события в составе класса формы.
Private Sub WriteIndentedTextToRichTextBox()
' Clear all text from the RichTextBox;
RichTextBox1.Clear()
' Set the font for the text.
RichTextBox1.Font = New Font("Lucinda Console", 12)
' Specify a 20 pixel right indent in all paragraphs.
RichTextBox1.SelectionRightIndent = 30
' Set the text within the control.
RichTextBox1.SelectedText = "All text is indented 20 pixels from the right edge of the RichTextBox."
RichTextBox1.SelectedText = "You can use this property with the SelectionIndent property to provide right and left margins."
RichTextBox1.SelectedText = "After this paragraph the indentation will end." + ControlChars.CrLf
' Remove all right indentation.
RichTextBox1.SelectionRightIndent = 0
RichTextBox1.SelectedText = "This paragraph has no right indentation. All text should flow as normal."
End Sub