以编程方式设置打印页面左、右、上、下边距
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法控制用户的打印机。
打印机设置严格处于“用户控制”范围内。
如果你想减少利润,那你就不走运了。
如果您想增加边距,您只需添加边距即可,因为应用程序的边距将应用于纸张的“可打印区域”,即打印机的 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.
这个CSS规则是为此而设计的:
也许有用的链接:
This css rules are designed for that:
Maybe useful links: