在打印机设置对话框中设置
1、在报表资源管理器中,双击设置节点。
2、在报表设置对话框中,单击打印机设置。
3、在打印机设置页上,在 Orientation 区域,选择 Portrait 或者 Landscape。
4、点击 OK 返回报表界面。
使用代码进行设置
1、双击报表设计界面的灰色区域,以创建报表ReportStart事件的处理方法。
2、将下面代码粘贴到事件处理方法中。
注:只可以在运行报表之前修改页面方向。
使用 Visual Basic 编写以下代码
Me.PageSettings.Orientation = GrapeCity.ActiveReports.Document.Section.PageOrientation.Landscape |
使用 C# 编写以下代码
this.PageSettings.Orientation = GrapeCity.ActiveReports.Document.Section.PageOrientation.Landscape; |