GrapeCity ActiveReports for .NET 14.0J
PaperWidth プロパティ (PageSettings)
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports 名前空間 > PageSettings クラス : PaperWidth プロパティ
ユーザー定義サイズの用紙を使う場合に、用紙の幅を示す値を取得または設定します。
シンタックス
'宣言
 
Public Property PaperWidth As Single
public float PaperWidth {get; set;}

プロパティ値

用紙の幅を示す浮動小数点値(インチ単位)。

解説

このプロパティを使用するには、PaperKindプロパティをPaperKind.Customに設定します。このプロパティが機能するには、使用する用紙サイズがプリンタによってサポートされている必要があります。

使用例
private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
{
    this.PageSettings.PaperHeight = 11.0f;
    this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Custom;
    this.PageSettings.PaperWidth = 8.5f;    
}
Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
   Me.PageSettings.PaperHeight = 11.0F
   Me.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Custom
   Me.PageSettings.PaperWidth = 8.5F
End Sub
参照

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