InsertCellColor

RevisionOptions.InsertCellColor property

يسمح بتحديد اللون الذي سيتم استخدامه للخلايا المدرجةInsertion . القيمة الافتراضية هيBlue .

public RevisionColor InsertCellColor { get; set; }

أمثلة

يوضح كيفية العمل مع لون مراجعة الخلية للإدراج/الحذف.

Document doc = new Document(MyDir + "Cell revisions.docx");

doc.LayoutOptions.RevisionOptions.InsertCellColor = RevisionColor.LightBlue;
doc.LayoutOptions.RevisionOptions.DeleteCellColor = RevisionColor.DarkRed;

doc.Save(ArtifactsDir + "Revision.RevisionCellColor.pdf");

أنظر أيضا