3

对于 AvalonEdit,我在 xshd 文件中定义了“注释”。现在,在我的程序中,我想确定给定的偏移量是位于注释内部还是外部。

我确实在网上找到了一些代码,即:http:
//community.sharpdevelop.net/forums/t/12793.aspx

但是,我不知道如何从我的 AvalonEdit-Object 接收必要的对象(如 CurrentContext)。

我希望有人以前创建过这样的功能。您能否发布一些代码或指出我正确的方向?(文件等)

4

1 回答 1

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");
}
于 2012-11-19T00:35:38.250 回答