ViewType

ViewType enumeration

Possible values for the view mode in Microsoft Word.

public enum ViewType

Values

NameValueDescription
None0The document shall be rendered in the default view of the application.
Reading0The document shall be rendered in the default view of the application.
PageLayout1The document shall be opened in a view that displays the document as it will print.
Outline3The document shall be rendered in a view optimized for outlining or creating long documents.
Normal4The document shall be rendered in a view optimized for outlining or creating long documents.
Web5The document shall be rendered in a view mimicking the way this document would be displayed in a web page.

Examples

Shows how to set a custom zoom factor, which older versions of Microsoft Word will apply to a document upon loading.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Writeln("Hello world!");

doc.ViewOptions.ViewType = ViewType.PageLayout;
doc.ViewOptions.ZoomPercent = 50;

Assert.AreEqual(ZoomType.Custom, doc.ViewOptions.ZoomType);
Assert.AreEqual(ZoomType.None, doc.ViewOptions.ZoomType);

doc.Save(ArtifactsDir + "ViewOptions.SetZoomPercentage.doc");

See Also