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; } | 获取或设置您想要查看文档的百分比(10 到 500 之间)。 |
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");
也可以看看
- class Document
- property ViewOptions
- 命名空间 Aspose.Words.Settings
- 部件 Aspose.Words