Accept
Содержание
[
Скрывать
]Shape.Accept method
Принимает посетителя.
public override bool Accept(DocumentVisitor visitor)
Параметр | Тип | Описание |
---|---|---|
visitor | DocumentVisitor | Посетитель, который посетит узлы. |
Возвращаемое значение
Истинно, если были посещены все узлы; ложь, еслиDocumentVisitor
остановил операцию перед посещением всех узлов.
Примечания
Перечисляет этот узел и все его дочерние элементы. Каждый узел вызывает соответствующий методDocumentVisitor
.
Дополнительные сведения см. в шаблоне проектирования «Посетитель».
ЗвонкиVisitShapeStart
, затем звонитAccept
для всех дочерних узлов формы и вызововVisitShapeEnd
в конце.
Примеры
Показывает, как перебирать все фигуры в документе.
public void VisitShapes()
{
Document doc = new Document(MyDir + "Revision shape.docx");
ShapeAppearancePrinter visitor = new ShapeAppearancePrinter();
doc.Accept(visitor);
Console.WriteLine(visitor.GetText());
}
/// <summary>
/// Регистрирует информацию о внешнем виде посещенных фигур.
/// </summary>
private class ShapeAppearancePrinter : DocumentVisitor
{
public ShapeAppearancePrinter()
{
mShapesVisited = 0;
mTextIndentLevel = 0;
mStringBuilder = new StringBuilder();
}
/// <summary>
/// Добавляет строку в StringBuilder с одним добавленным символом табуляции для каждого уровня отступа.
/// </summary>
private void AppendLine(string text)
{
for (int i = 0; i < mTextIndentLevel; i++) mStringBuilder.Append('\t');
mStringBuilder.AppendLine(text);
}
/// <summary>
/// Возвращаем весь текст, накопленный StringBuilder.
/// </summary>
public string GetText()
{
return $"Shapes visited: {mShapesVisited}\n{mStringBuilder}";
}
/// <summary>
/// Вызывается, когда этот посетитель посещает начало узла Shape.
/// </summary>
public override VisitorAction VisitShapeStart(Shape shape)
{
AppendLine($"Shape found: {shape.ShapeType}");
mTextIndentLevel++;
if (shape.HasChart)
AppendLine($"Has chart: {shape.Chart.Title.Text}");
AppendLine($"Extrusion enabled: {shape.ExtrusionEnabled}");
AppendLine($"Shadow enabled: {shape.ShadowEnabled}");
AppendLine($"StoryType: {shape.StoryType}");
if (shape.Stroked)
{
Assert.AreEqual(shape.Stroke.Color, shape.StrokeColor);
AppendLine($"Stroke colors: {shape.Stroke.Color}, {shape.Stroke.Color2}");
AppendLine($"Stroke weight: {shape.StrokeWeight}");
}
if (shape.Filled)
AppendLine($"Filled: {shape.FillColor}");
if (shape.OleFormat != null)
AppendLine($"Ole found of type: {shape.OleFormat.ProgId}");
if (shape.SignatureLine != null)
AppendLine($"Found signature line for: {shape.SignatureLine.Signer}, {shape.SignatureLine.SignerTitle}");
return VisitorAction.Continue;
}
/// <summary>
/// Вызывается, когда этот посетитель посещает конец узла Shape.
/// </summary>
public override VisitorAction VisitShapeEnd(Shape shape)
{
mTextIndentLevel--;
mShapesVisited++;
AppendLine($"End of {shape.ShapeType}");
return VisitorAction.Continue;
}
/// <summary>
/// Вызывается, когда этот посетитель посещает начало узла GroupShape.
/// </summary>
public override VisitorAction VisitGroupShapeStart(GroupShape groupShape)
{
AppendLine($"Shape group found: {groupShape.ShapeType}");
mTextIndentLevel++;
return VisitorAction.Continue;
}
/// <summary>
/// Вызывается, когда этот посетитель посещает конец узла GroupShape.
/// </summary>
public override VisitorAction VisitGroupShapeEnd(GroupShape groupShape)
{
mTextIndentLevel--;
AppendLine($"End of {groupShape.ShapeType}");
return VisitorAction.Continue;
}
private int mShapesVisited;
private int mTextIndentLevel;
private readonly StringBuilder mStringBuilder;
}
Смотрите также
- class DocumentVisitor
- class Shape
- пространство имен Aspose.Words.Drawing
- сборка Aspose.Words