'宣言 Public Event PageBodyPrinting As PageBodyPrintingEventHandler
public event PageBodyPrintingEventHandler PageBodyPrinting
イベント ハンドラが、このイベントに関連するデータを含む、PageBodyPrintingEventArgs 型の引数を受け取りました。次の PageBodyPrintingEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Document Infragistics.Win.Printing.PageSectionPrintEventArgsから継承されます。 | 印刷するドキュメントを返します。 |
Graphics Infragistics.Win.Printing.PageSectionPrintEventArgsから継承されます。 | ページを描画するグラフィックオブジェクトを返します。 |
Handled | ページの背景と境界線についてデフォルトの描画を行うかどうかを取得または設定します。 |
PageSettings Infragistics.Win.Printing.PageSectionPrintEventArgsから継承されます。 | 印刷するカレントページに関連付けられた System.Drawing.Printing.PageSettings を返します。 |
RectInsideBorders Infragistics.Win.Printing.PageSectionPrintEventArgsから継承されます。 | 境界線の内側にあるセクションの領域を返します。 |
RectInsideMargins Infragistics.Win.Printing.PageSectionPrintEventArgsから継承されます。 | マージンの内側にあるセクションの領域を返します。 |
RectInsidePadding Infragistics.Win.Printing.PageSectionPrintEventArgsから継承されます。 | 境界線の内側にあるセクションの領域を返します。 |
RectOverall Infragistics.Win.Printing.PageSectionPrintEventArgsから継承されます。 | セクションに使用可能な領域を返します。 |
Section | ページ本体を表すセクションを返します。 |
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.Printing Private Sub UltraSchedulePrintDocument1_PageBodyPrinting(ByVal sender As Object, ByVal e As Infragistics.Win.Printing.PageBodyPrintingEventArgs) Handles UltraSchedulePrintDocument1.PageBodyPrinting ' when the first page is printed, prevent the regular ' page body from being printed If CType(sender, UltraPrintDocument).PageNumber = 1 Then 'mark the event as handled so page body of the print document will 'not be rendered e.Handled = True ' the title page will have a gray background e.Graphics.FillRectangle(Brushes.LightGray, e.RectInsidePadding) Dim sf As StringFormat = Nothing Dim font As Font = Nothing Try sf = New StringFormat(StringFormatFlags.FitBlackBox) sf.Alignment = StringAlignment.Center sf.LineAlignment = StringAlignment.Center Dim text As String = "Infragistics Win\nPrinting Demo" font = New Font("Tahoma", 36.0F) e.Graphics.DrawString(text, font, Brushes.Black, RectangleF.op_Implicit(e.RectInsidePadding), sf) Finally 'clean up If Not font Is Nothing Then font.Dispose() If Not sf Is Nothing Then sf.Dispose() End Try End If End Sub Private Sub UltraSchedulePrintDocument1_PagePrinted(ByVal sender As Object, ByVal e As Infragistics.Win.Printing.PagePrintedEventArgs) Handles UltraSchedulePrintDocument1.PagePrinted 'note: the reprintpage must be honored by the print document and therefore 'is implementation dependant e.ReprintPage = CType(sender, UltraPrintDocument).PageNumber = 1 End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.Printing; private void ultraSchedulePrintDocument1_PageBodyPrinting(object sender, Infragistics.Win.Printing.PageBodyPrintingEventArgs e) { // when the first page is printed, prevent the regular // page body from being printed if (((UltraPrintDocument)sender).PageNumber == 1) { // mark the event as handled so page body of the print document will // not be rendered e.Handled = true; // the title page will have a gray background e.Graphics.FillRectangle(Brushes.LightGray, e.RectInsidePadding); using (StringFormat sf = new StringFormat(StringFormatFlags.FitBlackBox)) { sf.Alignment = StringAlignment.Center; sf.LineAlignment = StringAlignment.Center; string text = "Infragistics Win\nPrinting Demo"; using (Font font = new Font("Tahoma", 36f)) e.Graphics.DrawString(text, font, Brushes.Black, e.RectInsidePadding, sf); } } } private void ultraSchedulePrintDocument1_PagePrinted(object sender, Infragistics.Win.Printing.PagePrintedEventArgs e) { //note: the reprintpage must be honored by the print document and therefore //is implementation dependant e.ReprintPage = ((UltraPrintDocument)sender).PageNumber == 1; }