1 type derived from PrintEventArgs
System.Drawing.Common (1)
System\Drawing\Printing\QueryPageSettingsEventArgs.cs (1)
9
public class QueryPageSettingsEventArgs :
PrintEventArgs
1 instantiation of PrintEventArgs
System.Drawing.Common (1)
System\Drawing\Printing\PrintController.cs (1)
48
PrintEventArgs printEvent =
new
(printAction);
17 references to PrintEventArgs
System.Drawing (1)
System.Drawing.cs (1)
127
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Printing.
PrintEventArgs
))]
System.Drawing.Common (14)
System\Drawing\Printing\DefaultPrintController.cs (2)
22
public override void OnStartPrint(PrintDocument document,
PrintEventArgs
e)
136
public override void OnEndPrint(PrintDocument document,
PrintEventArgs
e)
System\Drawing\Printing\PreviewPrintController.cs (2)
26
public override void OnStartPrint(PrintDocument document,
PrintEventArgs
e)
109
public override void OnEndPrint(PrintDocument document,
PrintEventArgs
e)
System\Drawing\Printing\PrintAction.cs (1)
7
/// Specifies the type of action for the <see cref='
PrintEventArgs
'/>.
System\Drawing\Printing\PrintController.cs (4)
48
PrintEventArgs
printEvent = new(printAction);
95
/// Add initialization code to <see cref="OnStartPrint(PrintDocument,
PrintEventArgs
)"/> or
216
public virtual void OnStartPrint(PrintDocument document,
PrintEventArgs
e)
224
public virtual void OnEndPrint(PrintDocument document,
PrintEventArgs
e) => _modeHandle?.Close();
System\Drawing\Printing\PrintDocument.cs (2)
149
protected internal virtual void OnBeginPrint(
PrintEventArgs
e) => _beginPrintHandler?.Invoke(this, e);
154
protected internal virtual void OnEndPrint(
PrintEventArgs
e) => _endPrintHandler?.Invoke(this, e);
System\Drawing\Printing\PrintEventArgs.cs (2)
14
/// Initializes a new instance of the <see cref='
PrintEventArgs
'/> class.
21
/// Initializes a new instance of the <see cref='
PrintEventArgs
'/> class.
System\Drawing\Printing\PrintEventHandler.cs (1)
11
public delegate void PrintEventHandler(object sender,
PrintEventArgs
e);
System.Windows.Forms (2)
System\Windows\Forms\Printing\PrintControllerWithStatusDialog.cs (2)
33
public override void OnStartPrint(PrintDocument document,
PrintEventArgs
e)
100
public override void OnEndPrint(PrintDocument document,
PrintEventArgs
e)