DeleteCellColor

RevisionOptions.DeleteCellColor property

Allows to specify the color to be used for deleted cells Deletion. Default value is Pink.

public RevisionColor DeleteCellColor { 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