PowerTools ActiveReports for .NET 9.0J
PrintWidth プロパティ
使用例 

レポートの印刷可能な幅を設定または返します(インチ単位)。
構文
'宣言
 
Public Property PrintWidth As Single
public float PrintWidth {get; set;}

プロパティ値

レポートを印刷できる物理的なスペースです。デフォルトは6インチです。

解説

印刷幅を設定するときに、余白の幅を考慮していないと、レポートの幅が用紙サイズより大きくなる可能性があります。この場合、レポートの各ページの後に、ページの右端に垂直の赤い点線のある空のページが印刷されます。

使用例
private void viewer1_Load(object sender, System.EventArgs e)
{
    rptGrapeCity rpt = new rptGrapeCity();
    rpt.PrintWidth = rpt.PageSettings.PaperWidth - rpt.PageSettings.Margins.Left - rpt.PageSettings.Margins.Right;
    rpt.Run();
    this.viewer1.Document = rpt.Document;
}
Private Sub Viewer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Viewer1.Load
    Dim rpt As New SectionReport1
    rpt.PrintWidth = rpt.PageSettings.PaperWidth - rpt.PageSettings.Margins.Left - rpt.PageSettings.Margins.Right
    rpt.Run()
    Me.Viewer1.Document = rpt.Document
End Sub
参照

関連項目

SectionReport クラス
SectionReport メンバ
PageSettings プロパティ

 

 


©2003-2015 GrapeCity inc. All rights reserved.