How would I be able to Justify Align text in a RTB?
Printable View
How would I be able to Justify Align text in a RTB?
Set the RichTextBox SelAlignment to Null, which can be achieved by:
RichTextBox1.SelAlighnment = Null
Null can also be substituded for vbNull, they should be the same.
That doesn't seem to Justify Align, but it does Right Align. I need it to be justified.