RevisionOptions.ShowRevisionMarks

RevisionOptions ShowRevisionMarks property. Allow to specify whether revision text should be marked with special formatting markup. Default value is true.

RevisionOptions.ShowRevisionMarks property

Allow to specify whether revision text should be marked with special formatting markup. Default value is true.

public bool ShowRevisionMarks { get; set; }

Examples

Shows how to disable displaying revision marks upon document rendering.

ConverterContext context = new ConverterContext();
context.LayoutOptions.RevisionOptions.ShowRevisionMarks = false;

Converter.Create(context)
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "RevisionOptions.ShowRevisionMarks.pdf")
    .Execute();

See Also