以编程方式设置打印页面左、右、上、下边距

发布于 2024-12-05 16:50:31 字数 66 浏览 2 评论 0原文

如何在 ASP.NET Web 应用程序中以编程方式设置打印机(左、右、上、下)边距、纸张尺寸(如 A4、A3 等)。

How to programmatically set the printer (left, right, top, bottom) margins, paper size liek A4, A3 etc.. in asp.net web applications.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫性小仙女 2024-12-12 16:50:31

您无法控制用户的打印机。
打印机设置严格处于“用户控制”范围内。
如果你想减少利润,那你就不走运了。
如果您想增加边距,您只需添加边距即可,因为应用程序的边距将应用于纸张的“可打印区域”,即打印机的 5% 默认边距 + 代码中的 5% 边距将是 10% 边距。

You cannot control a user's printer.
Printer settings are firmly in the domain of "user controlled".
If you want to decrease the margins you are out of luck.
If you want to increase the margins you can just add margins, since the margins of your application will be applied to the 'printable area' of your paper, i.e. 5% default margin from printer + 5% margin in code will be 10% margin.

尘世孤行 2024-12-12 16:50:31

这个CSS规则是为此而设计的:

@page { 
    size: 210mm 297mm portrait;
    margin: 0 0 0 0;
    overflow: hidden;     
}

也许有用的链接:

This css rules are designed for that:

@page { 
    size: 210mm 297mm portrait;
    margin: 0 0 0 0;
    overflow: hidden;     
}

Maybe useful links:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文