7

如何将c#中水晶报表的方向更改为横向?我在纵向使用水晶报告。

4

5 回答 5

16

你可以检查这个

右键--->设计--->页面设置--->方向--->景观格式。

于 2011-05-16T16:02:02.840 回答
6

Crystal Reports 使用您当前的打印机设置。更改这些,您的报告会更改以匹配。

因此,要将报表的方向更改为横向视图:

  1. 文件 -> 打印机设置。

  2. 在“方向”部分,选择“横向”。

于 2011-05-16T16:02:56.157 回答
2

为了将方向更改为横向模式,您需要转到 Crystal Reports-> Design-> Printer Setup

然后根据需要将方向更改为横向或纵向。

于 2011-05-18T08:23:18.680 回答
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

它将以风景模式显示水晶报告。

于 2015-04-15T07:34:55.727 回答
0

如果您想在运行时执行此操作,这将帮助您:

reportDocument1.PrintOptions.PaperOrientation = PaperOrientation.Landscape;
CrystalReportViewer1.ReportSource = reportDocument1;

我希望这能帮到您。

于 2019-04-17T12:10:41.467 回答