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
Name | Value | Description |
---|---|---|
None | 0 | Renders insert, delete and format revisions inline. |
Format | 1 | Renders insert and delete revisions inline, format revisions in balloons. |
FormatAndDelete | 2 | Renders 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
- namespace Wordize.Layout
- assembly Wordize