4 overrides of OnEndPage
System.Drawing.Common (2)
Special\NotSupported.cs (2)
2937public override void OnEndPage(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintPageEventArgs e) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } 3168public override void OnEndPage(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintPageEventArgs e) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
System.Drawing.Common.Tests (1)
System\Drawing\Printing\PrintDocumentTests.cs (1)
295public override void OnEndPage(PrintDocument document, PrintPageEventArgs e)
System.Windows.Forms (1)
System\Windows\Forms\Printing\PrintControllerWithStatusDialog.cs (1)
84public override void OnEndPage(PrintDocument document, PrintPageEventArgs e)
6 references to OnEndPage
System.Drawing.Common.Tests (4)
System\Drawing\Printing\PrintControllerTests.cs (3)
26controller.OnEndPage(document, printEventArgs); 46controller.OnEndPage(document, new PrintPageEventArgs(null, Rectangle.Empty, Rectangle.Empty, null)); 47controller.OnEndPage(null, null);
System\Drawing\Printing\PrintDocumentTests.cs (1)
297base.OnEndPage(document, e);
System.Windows.Forms (2)
System\Windows\Forms\Printing\PrintControllerWithStatusDialog.cs (2)
86_underlyingController.OnEndPage(document, e); 94base.OnEndPage(document, e);