如何将c#中水晶报告的方向更改为横向?我正在纵向使用水晶报告。
答案 0 :(得分:16)
您可以查看
右击--->设计--->页面设置--->方向---> LandScape格式。
答案 1 :(得分:6)
Crystal Reports使用您当前的打印机设置。更改这些内容,您的报告会更改为匹配。
因此,要将报告的方向更改为横向视图:
档案 - >打印机设置。
在“方向”部分中,选择“横向”。
答案 2 :(得分:2)
要将方向更改为横向模式,您需要转到Crystal Reports->设计 - >打印机设置
然后根据需要将方向更改为横向或纵向。
答案 3 :(得分:0)
动态更改水晶报告的方向请按照以下步骤操作:
1. Copy Crystal Report and past in same project,Rename it.
2. Now Right click on New Crystal Report > Design>Page SetUp > Orientation > LandScape ,that is set new new crystal report Orientation as LandScape
3. Last step is to Load new crystal report to ReportDocument at runtime
它将在LandScape模式下显示水晶报告。
答案 4 :(得分:0)
如果您想在运行时进行操作,这将为您提供帮助:
reportDocument1.PrintOptions.PaperOrientation = PaperOrientation.Landscape;
CrystalReportViewer1.ReportSource = reportDocument1;
我希望这会对您有所帮助。