InsertCellColor

RevisionOptions.InsertCellColor property

Allows to specify the color to be used for inserted cells Insertion. Default value is Blue.

public RevisionColor InsertCellColor { get; set; }

Examples

Shows how to work with insert/delete cell revision color.

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");

See Also