Actually there is a lot that Windows Forms RichTextBox does not reveal. If you have an HWND (Handle) property for the control, you can use the SendMessage API to send the EM_SETPARAFORMAT message for formatted playback.
In particular, the PARAFORMAT2 structure has some line spacing parameters that may be relevant. You will need to get your hands dirty with interop though.
source
share