DevExpress での一覧、帳票等のレポート(ASPxWebDocumentViewer)の余白(左右)設定のサンプルです。
現状の画面デザインはこのようになっています。
<レポートの余白(左右)設定>
「XtraReport1」ファイルを選択します。
「XtraReport」のプロパティから「Me.Margins = New System.Drawing.Printing.Margins(0, 0, 100, 100)」を設定します。
「XtraReport」のプロパティから「Me.Margins = New System.Drawing.Printing.Margins(0, 0, 100, 100)」を設定します。
【サンプルプログラム(VB.Net)】
1 2 3 4 5 6 7 8 9 10 11 12 |
' '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.Margins = New System.Drawing.Printing.Margins(0, 0, 100, 100) Me.PageHeight = 827 Me.PageWidth = 1169 Me.PaperKind = System.Drawing.Printing.PaperKind.A4 Me.Version = "21.1" CType(Me, System.ComponentModel.ISupportInitialize).EndInit() |
それでは、実行して動作確認を行います。
↓
無事、一覧、帳票等のレポート(ASPxWebDocumentViewer)の余白(左右)設定が出来ました。