0

I created a report and set the width to 11in and the height to 8.5 and when the report loads it is in landscape but when I print it or export it, it is in portrait size? Is there somewhere else I need to modify size settings?

1
  • I got it working I found additional settings in the report menu Commented Jul 12, 2013 at 15:35

2 Answers 2

1

You can specify it by the user interface in a reports properties.

Report Properties


Alternatively, you can also specify the landscape property by code like so:

ReportViewer1.PrinterSettings.DefaultPageSettings.Landscape = True
ReportViewer1.RefreshReport()
0

I got it working I found additional settings in the report menu

Not the answer you're looking for? Browse other questions tagged or ask your own question.