码迷,mamicode.com
首页 > 其他好文 > 详细

DevExpress Report打印边距越界问题

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

标签:created   exp   page   .sh   pre   dev   div   class   问题   

  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打印边距越界问题

标签:created   exp   page   .sh   pre   dev   div   class   问题   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!