首页 > 其他 > 详细

DevExpress Report打印边距越界问题

时间:2018-01-11 10:45:42      阅读:325      评论:0      收藏:0      [点我收藏+]

  DevExpress  Report Print的时候,出现这样的问题:one or more margins are set outside the printable area of the page 。

      要忽略这个提示,方法为:report.PrintingSystem.ShowMarginsWarning = false; 

但是需要注意的是,PrintingSystem在report 文档产生后会重新生成。XtraReport.CreateDocument 方法优先级高于设置PrintingSystem的属性。这样处理才是正确的:

report.CreateDocument();

report.PrintingSystem.ShowMarginsWarning = false; 

DevExpress Report打印边距越界问题

原文:https://www.cnblogs.com/weifeng123/p/8266716.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!