ViewOptions

ViewOptions class

提供各种选项来控制文档在 Microsoft Word 中的显示方式。

要了解更多信息,请访问使用 Word 文档的选项和外观文档文章。

public class ViewOptions

特性

姓名描述
DisplayBackgroundShape { get; set; }控制打印布局视图中背景形状的显示。
DoNotDisplayPageBoundaries { get; set; }关闭文本顶部和页面上边缘之间的空间显示。
FormsDesign { get; set; }指定文档是否处于表单设计模式。
ViewType { get; set; }控制 Microsoft Word 中的视图模式。
ZoomPercent { get; set; }获取或设置您想要查看文档的百分比。
ZoomType { get; set; }根据窗口大小获取或设置缩放值。

例子

展示如何设置自定义缩放比例,旧版本的 Microsoft Word 将在加载时将该比例应用于文档。

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");

展示如何设置自定义缩放类型,旧版本的 Microsoft Word 将在加载时将其应用于文档。

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

// 将“ZoomType”属性设置为“ZoomType.PageWidth”以获取 Microsoft Word
// 自动缩放文档以适合页面的宽度。
// 将“ZoomType”属性设置为“ZoomType.FullPage”以获取 Microsoft Word
// 自动缩放文档以使整个第一页可见。
// 将“ZoomType”属性设置为“ZoomType.TextFit”以获取 Microsoft Word
// 自动缩放文档以适合第一页的内部文本边距。
doc.ViewOptions.ZoomType = zoomType;

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

也可以看看