Center text in a RichTextBox
-
-
Can anyone tell me how to center selected text in a RichTextBox. I loaded a rtf formatted document from Word that was centered in Word and it displayed centered in the RichTextBox so I think it can be done. I would apprectiate any help. Thanks, Kyle
Use the SelectionAlignment method of RichTextBox class. richTextBox1.SelectionAlignment(HorizontalAlignment.Center);
-
Use the SelectionAlignment method of RichTextBox class. richTextBox1.SelectionAlignment(HorizontalAlignment.Center);
:(( Ooops, SelectionAlignment is not a method, but a property, so you need to use... richTextBox1.SelectionAlignment = HorizontalAlignment.Center; Better I go sleep now... :~
-
:(( Ooops, SelectionAlignment is not a method, but a property, so you need to use... richTextBox1.SelectionAlignment = HorizontalAlignment.Center; Better I go sleep now... :~