Hello, I am making a Text Editor which will have functionality like a Code Editor. I could possibly achieve Syntax Highlighting via Regex myself but my main concern is Tab Stops.
I do not believe the built in RichTextBox enables tabs, however you can insert "\t" yourself. One problem with this is that the size defaults to 8, this cannot be changed. There is a Paragraph property for IndentSize but that's just for the first character of each Paragraph. I don't think this is what I want to Achieve.
Perhaps someone could point me in the right direction to what I want to achieve?