设置边距
Contents
[
Hide
]
Aspose.Diagram 完全支持 Microsoft Visio 的页面设置选项。开发人员可能需要为页面配置页面设置以控制打印过程。本主题讨论如何使用 Aspose.Diagram 配置页边距。
设置边距
Aspose.Diagram提供了一个类,页 ,代表一个 Microsoft Visio 文件。这Diagram类包含一个页数允许访问 Visio 文件中每个页面的集合。一个页面由页班级。
这页表类提供了打印道具用于设置页面的页面设置选项的属性。事实上,这打印道具属性是页表用于为打印页面设置不同页面布局选项的类。这打印道具类提供用于设置页面设置选项的各种属性。下面讨论其中一些特性。
页边距
使用设置页边距(PageTopMargin、PageBottomMargin、PageLeftMargin、PageRightMargin)打印道具班级成员。下面列出了一些用于指定页边距的方法:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getDataDir(Test.class); | |
// Load source Visio diagram | |
Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx"); | |
//Set Page Margin | |
diagram.getPages().get(0).getPageSheet().getPrintProps().getPageLeftMargin().setValue( 0.01); | |
diagram.getPages().get(0).getPageSheet().getPrintProps().getPageRightMargin().setValue( 0.01); | |
diagram.getPages().get(0).getPageSheet().getPrintProps().getPageTopMargin().setValue( 0.01); | |
diagram.getPages().get(0).getPageSheet().getPrintProps().getPageBottomMargin().setValue( 0.01); |