Reputation: 559
How to change the symbol and color the Tab character
would like to change the character to the arrow character →
and set the red color
Upvotes: 0
Views: 522
Reputation: 2036
If you look at the source, you'll see that the character used to display a tab is hard coded:
Upvotes: 1
Reputation: 559
For change color the Tab character
textEditor.TextArea.TextView.NonPrintableCharacterBrush = Brushes.Red;
Upvotes: 1