对于AvalonEdit,我在xshd-File中定义了“Comments”。现在,在我的程序中,我想确定给定的偏移位于注释的内部还是外部。
我确实在网上找到了一些代码,即:
http://community.sharpdevelop.net/forums/t/12793.aspx
但是,我不知道如何从我的AvalonEdit-Object接收必要的对象(如CurrentContext)。
我希望有人之前创造过这样的功能。您能否发布一些代码或指出我正确的方向? (文件等)
答案 0 :(得分:3)
我不确定该示例中的“当前上下文”是什么,但它仅用于使用IHighlighter
访问服务容器。
您可以直接从TextEditor获取它:
bool IsInComment(int line, int column)
{
IHighlighter highlighter = textEditor.TextArea.GetService(typeof(IHighlighter)) as IHighlighter;
if (highlighter == null)
return false;
int off = textEditor.Document.GetOffset(line, column);
HighlightedLine result = highlighter.HighlightLine(document.GetLineByNumber(line));
return result.Sections.Any(s => s.Offset <= off && s.Offset+s.Length >= off && s.Color.Name == "Comment");
}