ViewOptions
Document.ViewOptions property
提供控制文档在 Microsoft Word 中显示方式的选项。
public ViewOptions ViewOptions { get; }
例子
演示如何设置自定义缩放系数,旧版本的 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");
也可以看看
- class ViewOptions
- class Document
- 命名空间 Aspose.Words
- 部件 Aspose.Words