VisitOfficeMathStart
محتويات
[
يخفي
]DocumentVisitor.VisitOfficeMathStart method
يتم استدعاؤه عند بدء تعداد كائن Office Math.
public virtual VisitorAction VisitOfficeMathStart(OfficeMath officeMath)
معامل | يكتب | وصف |
---|---|---|
officeMath | OfficeMath | الكائن الذي تتم زيارته. |
قيمة الإرجاع
أVisitorAction
القيمة التي تحدد كيفية متابعة التعداد.
أمثلة
يوضح كيفية طباعة بنية العقدة لكل عقدة رياضية في المكتب في المستند.
public void OfficeMathToText()
{
Document doc = new Document(MyDir + "DocumentVisitor-compatible features.docx");
OfficeMathStructurePrinter visitor = new OfficeMathStructurePrinter();
// عندما نحصل على عقدة مركبة لقبول زائر المستند، يقوم الزائر بزيارة العقدة المقبولة،
// ثم يجتاز جميع أبناء العقدة بطريقة العمق الأول.
// يمكن للزائر قراءة وتعديل كل عقدة تمت زيارتها.
doc.Accept(visitor);
Console.WriteLine(visitor.GetText());
}
/// <summary>
/// يجتاز الشجرة غير الثنائية للعقدة التابعة.
/// ينشئ خريطة على شكل سلسلة لجميع عقد OfficeMath التي تمت مواجهتها وأبناءها.
/// </summary>
public class OfficeMathStructurePrinter : DocumentVisitor
{
public OfficeMathStructurePrinter()
{
mBuilder = new StringBuilder();
mVisitorIsInsideOfficeMath = false;
}
/// <summary>
/// يحصل على النص العادي للمستند الذي قام الزائر بتجميعه.
/// </summary>
public string GetText()
{
return mBuilder.ToString();
}
/// <summary>
/// يتم الاتصال به عند مواجهة عقدة التشغيل في المستند.
/// </summary>
public override VisitorAction VisitRun(Run run)
{
if (mVisitorIsInsideOfficeMath) IndentAndAppendLine("[Run] \"" + run.GetText() + "\"");
return VisitorAction.Continue;
}
/// <summary>
/// يتم الاتصال به عند مواجهة عقدة OfficeMath في المستند.
/// </summary>
public override VisitorAction VisitOfficeMathStart(OfficeMath officeMath)
{
IndentAndAppendLine("[OfficeMath start] Math object type: " + officeMath.MathObjectType);
mDocTraversalDepth++;
mVisitorIsInsideOfficeMath = true;
return VisitorAction.Continue;
}
/// <summary>
/// يتم الاتصال به بعد زيارة كافة العقد التابعة لعقدة OfficeMath.
/// </summary>
public override VisitorAction VisitOfficeMathEnd(OfficeMath officeMath)
{
mDocTraversalDepth--;
IndentAndAppendLine("[OfficeMath end]");
mVisitorIsInsideOfficeMath = 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 mVisitorIsInsideOfficeMath;
private int mDocTraversalDepth;
private readonly StringBuilder mBuilder;
}
أنظر أيضا
- enum VisitorAction
- class OfficeMath
- class DocumentVisitor
- مساحة الاسم Aspose.Words
- المجسم Aspose.Words