How can I for example change the font only for line 15 ? I've used .ScrollTo(15,4);
but there is no command to highlight or anything when I'm at line 15.(I want to do this by code dynamically). So are there any ways to edit just one line ? And also I would like to know how can I highlight that line by code.
Here is my xaml:
<Grid>
<avalonEdit:TextEditor
Name="debuggertext"
FontFamily="Consolas"
FontSize="10pt"
ShowLineNumbers="True"
SyntaxHighlighting="C++" VerticalScrollBarVisibility="Auto" IsReadOnly="True" HorizontalScrollBarVisibility="Disabled"
/>