Hello. Assuming I have selected some text using the search function:
EditorSearchOptions options = new EditorSearchOptions();
options.FindText = "test";
options.PatternProvider = SearchPatternProviders.Normal;
ISearchResultSet resultSet = _syntaxEditor.ActiveView.Searcher.FindNext(options);
How would I be able to change the highlighted text properties (font family, font size, text color) dynamically in code?
Is there a similar procedure to what we'd do with selected strings in a rich text editor?