PrintEventArgs
Provides data for the BeginPrint and EndPrint events.
using System.ComponentModel;
namespace System.Drawing.Printing
{
public class PrintEventArgs : CancelEventArgs
{
public PrintAction PrintAction { get; }
public PrintEventArgs()
{
}
internal PrintEventArgs(PrintAction action)
{
PrintAction = action;
}
}
}