请问有谁用过XtraReport报表吗?
我做一个报表,横向显示,
已经将 PaperKind 属性设为 System.Drawing.Printing.PaperKind.A4Rotated了,
预览的时候是横向的,但打印的时候却是坚向打印,难道还要设置其他属性吗???求解。。。
------解决方案--------------------C#
this.PageHeight = 827;
this.PageWidth = 1169;
this.PaperKind = System.Drawing.Printing.PaperKind.A4Rotated;
------解决方案--------------------
当将PaperKind设为A4Rotated时,
PageHeight 已经默认为827
PageWidth 已经默认为1169 的了
------解决方案--------------------已解决。。。