RevisionOptions.ShowOriginalRevision

RevisionOptions ShowOriginalRevision property. Allows to specify whether the original text should be shown instead of revised one. Default value is false.

RevisionOptions.ShowOriginalRevision property

Allows to specify whether the original text should be shown instead of revised one. Default value is false.

public bool ShowOriginalRevision { get; set; }

Examples

Shows how to render the original text instead of revised one upon rendering.

ConverterContext context = new ConverterContext();
context.LayoutOptions.RevisionOptions.ShowOriginalRevision = true;

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

See Also