6 references to PrintEventHandler
System.Drawing (1)
System.Drawing.cs (1)
128[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Printing.PrintEventHandler))]
System.Drawing.Common (2)
Special\NotSupported.cs (2)
2978public event System.Drawing.Printing.PrintEventHandler BeginPrint { add { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } remove { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } 2979public event System.Drawing.Printing.PrintEventHandler EndPrint { add { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } remove { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } }
System.Drawing.Common.Tests (3)
System\Drawing\Printing\PrintDocumentTests.cs (3)
131PrintEventHandler beginPrintHandler = new((sender, e) => flag = true); 149PrintEventHandler endPrintHandler = new((sender, e) => flag = true); 172PrintEventHandler endPrintHandler = new((sender, e) => endPrintCalled = true);