VisitCommentRangeStart
Содержание
[
Скрывать
]DocumentVisitor.VisitCommentRangeStart method
Вызывается, когда встречается начало закомментированного диапазона текста.
public virtual VisitorAction VisitCommentRangeStart(CommentRangeStart commentRangeStart)
Параметр | Тип | Описание |
---|---|---|
commentRangeStart | CommentRangeStart | Объект, который посещается. |
Возвращаемое значение
АVisitorAction
значение, указывающее, как продолжить перечисление.
Примеры
Показывает, как распечатать структуру узлов каждого комментария и диапазона комментариев в документе.
public void CommentsToText()
{
Document doc = new Document(MyDir + "DocumentVisitor-compatible features.docx");
CommentStructurePrinter visitor = new CommentStructurePrinter();
// Когда мы получаем составной узел для приема посетителя документа, посетитель посещает принимающий узел,
// а затем обходит все дочерние узлы в глубину.
// Посетитель может читать и изменять каждый посещенный узел.
doc.Accept(visitor);
Console.WriteLine(visitor.GetText());
}
/// <summary>
/// Обходит недвоичное дерево дочерних узлов узла.
/// Создает карту в виде строки всех встреченных узлов Comment/CommentRange и их дочерних элементов.
/// </summary>
public class CommentStructurePrinter : DocumentVisitor
{
public CommentStructurePrinter()
{
mBuilder = new StringBuilder();
mVisitorIsInsideComment = false;
}
public string GetText()
{
return mBuilder.ToString();
}
/// <summary>
/// Вызывается, когда в документе встречается узел Run.
/// Запуск записывается только в том случае, если он является дочерним элементом узла Comment или CommentRange.
/// </summary>
public override VisitorAction VisitRun(Run run)
{
if (mVisitorIsInsideComment) IndentAndAppendLine("[Run] \"" + run.GetText() + "\"");
return VisitorAction.Continue;
}
/// <summary>
/// Вызывается, когда в документе встречается узел CommentRangeStart.
/// </summary>
public override VisitorAction VisitCommentRangeStart(CommentRangeStart commentRangeStart)
{
IndentAndAppendLine("[Comment range start] ID: " + commentRangeStart.Id);
mDocTraversalDepth++;
mVisitorIsInsideComment = true;
return VisitorAction.Continue;
}
/// <summary>
/// Вызывается, когда в документе встречается узел CommentRangeEnd.
/// </summary>
public override VisitorAction VisitCommentRangeEnd(CommentRangeEnd commentRangeEnd)
{
mDocTraversalDepth--;
IndentAndAppendLine("[Comment range end]");
mVisitorIsInsideComment = false;
return VisitorAction.Continue;
}
/// <summary>
/// Вызывается, когда в документе встречается узел комментария.
/// </summary>
public override VisitorAction VisitCommentStart(Comment comment)
{
IndentAndAppendLine(
$"[Comment start] For comment range ID {comment.Id}, By {comment.Author} on {comment.DateTime}");
mDocTraversalDepth++;
mVisitorIsInsideComment = true;
return VisitorAction.Continue;
}
/// <summary>
/// Вызывается после посещения всех дочерних узлов узла комментариев.
/// </summary>
public override VisitorAction VisitCommentEnd(Comment comment)
{
mDocTraversalDepth--;
IndentAndAppendLine("[Comment end]");
mVisitorIsInsideComment = false;
return VisitorAction.Continue;
}
/// <summary>
/// Добавляем строку в StringBuilder и делаем отступ в зависимости от глубины погружения посетителя
/// в дерево дочерних узлов комментария/диапазона комментариев.
/// </summary>
/// <param name="text"></param>
private void IndentAndAppendLine(string text)
{
for (int i = 0; i < mDocTraversalDepth; i++)
{
mBuilder.Append("| ");
}
mBuilder.AppendLine(text);
}
private bool mVisitorIsInsideComment;
private int mDocTraversalDepth;
private readonly StringBuilder mBuilder;
}
Смотрите также
- enum VisitorAction
- class CommentRangeStart
- class DocumentVisitor
- пространство имен Aspose.Words
- сборка Aspose.Words