DevExpress での一覧、帳票等のレポート(ASPxWebDocumentViewer)の出力向き(横)設定のサンプルです。
現状の画面デザインはこのようになっています。
<レポートの出力向き(横)設定>
「XtraReport1」ファイルを選択します。
「XtraReport」のプロパティから「Me.Landscape = True」を設定します。
【サンプルプログラム(VB.Net)】
1 2 3 4 5 6 7 8 9 10 11 |
' 'XtraReport1 ' Me.Bands.AddRange(New DevExpress.XtraReports.UI.Band() {Me.TopMargin, Me.BottomMargin, Me.Detail}) Me.Font = New System.Drawing.Font("Arial", 9.75!) Me.Landscape = True Me.PageHeight = 827 Me.PageWidth = 1169 Me.PaperKind = System.Drawing.Printing.PaperKind.A4 Me.Version = "21.1" CType(Me, System.ComponentModel.ISupportInitialize).EndInit() |
それでは、実行して動作確認を行います。
↓
無事、一覧、帳票等のレポート(ASPxWebDocumentViewer)の出力向き(横)設定が出来ました。