首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET >

请教有哪位高手用过XtraReport报表吗

2012-12-17 
请问有谁用过XtraReport报表吗?我做一个报表,横向显示,已经将 PaperKind 属性设为 System.Drawing.Printin

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

[解决办法]
已解决。。。

热点排行