I wrote a c# program that displays rdlc reports locally using the .net reportviewer. I can't figure out how to set page size to "Legal" instead of "Letter" when the reportviewer loads.
For example: This is how I refer to the reportviewer at load time to change the report path.
reportViewer1.LocalReport.ReportPath = strRptResource.ToString();
Can I change the page setup to "Legal" using a similar syntax?
FYI, the margins and page size are already set properly in the rdlc file.