バージョン

PageBodyPrinted イベント

Page が印刷された後に発生します。
シンタックス
'宣言
 
Public Event PageBodyPrinted As PageBodyPrintedEventHandler
public event PageBodyPrintedEventHandler PageBodyPrinted
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、PageBodyPrintedEventArgs 型の引数を受け取りました。次の PageBodyPrintedEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Document Infragistics.Win.Printing.PageSectionPrintEventArgsから継承されます。印刷するドキュメントを返します。
Graphics Infragistics.Win.Printing.PageSectionPrintEventArgsから継承されます。ページを描画するグラフィックオブジェクトを返します。
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 UltraPrintDocument1_PageBodyPrinting(ByVal sender As Object, ByVal e As Infragistics.Win.Printing.PageBodyPrintingEventArgs) Handles UltraPrintDocument1.PageBodyPrinting
        ' the PageBodyPrinting event is invoked before
        ' the contents of the page are rendered the 
        ' Handled parameter may be used to prevent the 
        ' default rendering from occuring
        If e.Document.PageNumber = 1 Then
            e.Handled = True
        End If
    End Sub

    Private Sub UltraPrintDocument1_PageBodyPrinted(ByVal sender As Object, ByVal e As Infragistics.Win.Printing.PageBodyPrintedEventArgs) Handles UltraPrintDocument1.PageBodyPrinted
        ' the PageBodyPrinted is invoked after the print
        ' document has rendered the contents of the body
        ' of the page and can be used to render on top
        ' of the body
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.Printing;

		private void ultraPrintDocument1_PageBodyPrinting(object sender, Infragistics.Win.Printing.PageBodyPrintingEventArgs e)
		{
			// the PageBodyPrinting event is invoked before
			// the contents of the page are rendered the 
			// Handled parameter may be used to prevent the 
			// default rendering from occuring
			if (e.Document.PageNumber == 1)
				e.Handled = true;
		}

		private void ultraPrintDocument1_PageBodyPrinted(object sender, Infragistics.Win.Printing.PageBodyPrintedEventArgs e)
		{
			// the PageBodyPrinted is invoked after the print
			// document has rendered the contents of the body
			// of the page and can be used to render on top
			// of the body
		}
参照