Modifying the Page Orientation of a Report File
Page orientation refers to the layout of a report on a page, either in portrait (vertical) or landscape (horizontal) mode. Changing the page orientation can improve the presentation and readability of the report content.
To change the page orientation in a report, you need to modify the XML code associated with the report’s structure. The following steps show how to change the page orientation to landscape:
- 
Open the report in a text editor. 
- 
Locate the following XML element: 
<PageHeight>8.5in</PageHeight>
<PageWidth>11in</PageWidth>
- Change the value of the PageHeightelement to 11in.
- Change the value of the PageWidthelement to 8.5in.
- Save the XML file.
The report will now be displayed in landscape orientation when you open it in a reporting tool.
To change the page orientation to portrait, reverse the steps above.
The following table shows the values of the PageHeight and PageWidth properties for different page orientations:
| Page orientation | PageHeight | PageWidth | 
|---|---|---|
| Portrait | 8.5 inches | 11 inches | 
| Landscape | 11 inches | 8.5 inches | 
