GrapeCity.ActiveReports.v9 アセンブリ > GrapeCity.ActiveReports 名前空間 > PageSettings クラス : PaperHeight プロパティ |
用紙の長さを示す浮動小数点値(インチ単位)。
このプロパティを使用するには、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