
Hi All,
I am working on WPF syntax editor.
If I typed invalid code, editor highliting errors, with red line. I need to disable this feature.
Can you please let me know how can I do this?
Thanks,
Sheshidar
Hi All,
I am working on WPF syntax editor.
If I typed invalid code, editor highliting errors, with red line. I need to disable this feature.
Can you please let me know how can I do this?
Thanks,
Sheshidar
Hello,
You should be able to do a line like this to remove squiggle lines from parse errors:
language.UnregisterService<CodeDocumentTaggerProvider<ParseErrorTagger>>();
Thanks ..iits working..
Please log in to a validated account to post comments.