ShowInBalloons Enum

Wordize.Layout.ShowInBalloons enum. Specifies which revisions are rendered in balloons.

ShowInBalloons enumeration

Specifies which revisions are rendered in balloons.

public enum ShowInBalloons

Values

NameValueDescription
None0Renders insert, delete and format revisions inline.
Format1Renders insert and delete revisions inline, format revisions in balloons.
FormatAndDelete2Renders insert revisions inline, delete and format revisions in balloons.

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