-2
私の場合は、実行時にレポートのページサイズしかわかりません。したがって、ReportViewer.aspx.csページ(レポートファイルを読み込む予定)のC#コードを使用してSSRSレポートのページサイズを設定する必要があります。 はReportViewer.csページからSSRSレポートページサイズを設定する方法は?
私の場合は、実行時にレポートのページサイズしかわかりません。したがって、ReportViewer.aspx.csページ(レポートファイルを読み込む予定)のC#コードを使用してSSRSレポートのページサイズを設定する必要があります。 はReportViewer.csページからSSRSレポートページサイズを設定する方法は?
https://forums.asp.net/t/2053895.aspx?How+to+set+page+size+in+a+Report+viewer+in+Microsoft+ReportViewer+WebForms によると、このコードは動作します私を助けてください:あなたはPageSettingsクラスの詳細のすべての種類を取得するには、リンクをたどることができMSDNで
System.Drawing.Printing.PageSettings pg=new System.Drawing.Printing.PageSettings();
pg.Margins.Top = 0;
pg.Margins.Bottom = 0;
pg.Margins.Left = 0;
pg.Margins.Right = 0;
System.Drawing.Printing.PaperSize size = new PaperSize();
// If you need A5 size then try:
//size.RawKind = (int)PaperKind.A5;
// pg.PaperSize = size;
this.reportViewer1.SetPageSettings(pg);
this.reportViewer1.RefreshReport();
を