winform 打印 页边距设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了winform 打印 页边距设置相关的知识,希望对你有一定的参考价值。

这个怎么办,我想让他靠近左上角
怎么设置页边距 帮我解决了 追加分
真心谢谢

参考技术A //打印方向(纵/横)
this.PrintDoc.DefaultPageSettings.Landscape = false;
//设置纸张类型
string papername = ps.Attributes["papername"].Value;
int paperWidth = Convert.ToInt32(ps.Attributes["paperwidth"].Value);
int paperHeight = Convert.ToInt32(ps.Attributes["paperheight"].Value);
this.PrintDoc.DefaultPageSettings.PaperSize = new PaperSize(papername, paperWidth, paperHeight);
//打印机设置
// this.printDoc.PrinterSettings.PrinterName = ps["Printer"].InnerText.Trim();

//边距,上下左右
int leftMargin = int.Parse(ps.Attributes["left"].Value.Trim());
int topMargin = int.Parse(ps.Attributes["top"].Value.Trim());
int rightMargin = int.Parse(ps.Attributes["right"].Value.Trim());
int bottomMargin = int.Parse(ps.Attributes["bottom"].Value.Trim());

PrintDoc.DefaultPageSettings.Margins = new Margins(leftMargin, rightMargin, topMargin, bottomMargin);追问

//边距,上下左右

写在哪的??
printDocument1_PrintPage 下面??
可以给页边距赋值吗??怎么符

帮我解答完 我会加分 的 真心谢谢

追答

打印之前都可以的,因为设置的是PrintDoc,上面的代码最后设置的是边距

本回答被提问者和网友采纳

如何通过Java 代码设置 Word 文档页边距

页边距是指页面的边线到文字的距离。通常可在页边距内部的可打印区域中插入文字和图形,也可以将某些项目放置在页边距区域中(如页眉、页脚和页码等)。在我们用的Word文档中,都会设置页边距统一标准格式,页边距的标准为上下页边距为2.54CM,左右边距为2.8CM。边距也可以根据自己的需要进行更改。今天这篇文章将为您展示如何通过编程方式,设置Word 文档页边距。下面是我整理的具体步骤及方法,并附上Java代码供大家参考。

程序环境:

方法1:手动引入。将 ​​Free Spire.Doc for Java​​ 下载到本地,解压,找到lib文件夹下的Spire.Doc.jar文件。在IDEA中打开如下界面,将本地路径中的jar文件引入Java程序

如何通过Java

方法2: 如果您想通过 ​​Maven​​安装,则可以在 pom.xml 文件中添加以下代码导入 JAR 文件。

<repositories>
<repository>
<id>com.e-iceblue</id>
<url>https://repo.e-iceblue.cn/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.doc.free</artifactId>
<version>5.2.0</version>
</dependency>
</dependencies>

设置 Word 文档页边距

我们可以使用 Section.getPageSetup().getMargins() 方法来获取页面的页边距设置,再用 MarginsF 类下的方法设置上下左右页边距。详细操作步骤如下:

  • 创建一个 Document 的对象。
  • 使用 Document.loadFromFile() 方法载入 Word 文档。
  • 使用 Document.getSections().get() 方法获取文档第一节。
  • 使用 Section.getPageSetup().getMargins() 方法获取第一节的页边距。
  • 分别使用 MarginsF.setTop()MarginsF.setBottom()MarginsF.setLeft()MarginsF.setRight() 方法设置上下左右页边距。
  • 使用 Document.saveToFile() 方法保存文档。

完整代码

Java

import com.spire.doc.Document;
import com.spire.doc.FileFormat;
import com.spire.doc.Section;
import com.spire.doc.documents.MarginsF;

public class setPageMargins
public static void main(String []args)

//创建一个Document的对象
Document document = new Document();

//载入Word文档
document.loadFromFile("生死疲劳.docx");

//获取文档第一节
Section section = document.getSections().get(0);

//获取第一节的页边距
MarginsF pageMargin = section.getPageSetup().getMargins();

//设置第一节的上下左右页边距
pageMargin.setTop(17.9f);
pageMargin.setBottom(17.9f);
pageMargin.setLeft(17.9f);
pageMargin.setRight(17.9f);

//保存文档
document.saveToFile("设置页边距.docx", FileFormat.Docx_2013);

效果图

如何通过Java

—本文完—

以上是关于winform 打印 页边距设置的主要内容,如果未能解决你的问题,请参考以下文章

打印质量winform

请问标准得A4纸打印页边距是多少?

针式打印机打发票怎么设置页边距

报表打印时提示页边距被设置到纸张可打印范围之外怎么办

如何通过Java 代码设置 Word 文档页边距

fpdf设置页边距在python中不起作用