DevExpress での一覧、帳票等のレポート(ASPxWebDocumentViewer)の一覧の位置設定のサンプルです。
現状の画面デザインはこのようになっています。
<レポートの一覧の位置設定>
「XrTable1」オブジェクトを選択します。
「XrTable1」のプロパティから「Me.XrTable1.LocationFloat = New DevExpress.Utils.PointFloat(0!, 0!)」を設定します。
【サンプルプログラム(VB.Net)】
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
' 'XrTable1 ' Me.XrTable1.BackColor = System.Drawing.Color.Thistle Me.XrTable1.BorderColor = System.Drawing.Color.Blue Me.XrTable1.Borders = CType((((DevExpress.XtraPrinting.BorderSide.Left Or DevExpress.XtraPrinting.BorderSide.Top) _ Or DevExpress.XtraPrinting.BorderSide.Right) _ Or DevExpress.XtraPrinting.BorderSide.Bottom), DevExpress.XtraPrinting.BorderSide) Me.XrTable1.BorderWidth = 2.0! Me.XrTable1.LocationFloat = New DevExpress.Utils.PointFloat(0!, 0!) Me.XrTable1.Name = "XrTable1" Me.XrTable1.Padding = New DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96.0!) Me.XrTable1.Rows.AddRange(New DevExpress.XtraReports.UI.XRTableRow() {Me.XrTableRow1}) Me.XrTable1.SizeF = New System.Drawing.SizeF(700.0!, 25.0!) Me.XrTable1.StylePriority.UseBackColor = False Me.XrTable1.StylePriority.UseBorderColor = False Me.XrTable1.StylePriority.UseBorders = False Me.XrTable1.StylePriority.UseBorderWidth = False |
それでは、実行して動作確認を行います。
↓
無事、一覧、帳票等のレポート(ASPxWebDocumentViewer)の一覧の位置設定が出来ました。