RevisionOptions.ShowInBalloons

RevisionOptions ShowInBalloons property. Allows to specify whether the revisions are rendered in the balloons. Default value is None.

RevisionOptions.ShowInBalloons property

Allows to specify whether the revisions are rendered in the balloons. Default value is None.

public ShowInBalloons ShowInBalloons { get; set; }

Remarks

Note that revisions are not rendered in balloons for ShowInAnnotations.

Examples

Shows how to configure Wordize to render insert revisions inline, delete and format revisions in balloons.

ConverterContext context = new ConverterContext();
context.LayoutOptions.RevisionOptions.ShowInBalloons = ShowInBalloons.FormatAndDelete;

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

See Also