RevisionOptions.ShowRevisionBars

RevisionOptions ShowRevisionBars property. Allows to specify whether revision bars should be rendered near lines containing revised content. Default value is true.

RevisionOptions.ShowRevisionBars property

Allows to specify whether revision bars should be rendered near lines containing revised content. Default value is true.

public bool ShowRevisionBars { get; set; }

Examples

Shows how to disable displaying revision bars upon document rendering.

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

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

See Also