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)
2978
public event System.Drawing.Printing.
PrintEventHandler
BeginPrint { add { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } remove { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } }
2979
public 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)
131
PrintEventHandler
beginPrintHandler = new((sender, e) => flag = true);
149
PrintEventHandler
endPrintHandler = new((sender, e) => flag = true);
172
PrintEventHandler
endPrintHandler = new((sender, e) => endPrintCalled = true);