This class implements PrintController to send the
print information to a standard printer. You typically set an
instance of this class into the
PrintDocument.PrintController property to
determine how a document will be printed. See
PrintDocument for more information on the printing
process.
public class StandardPrintController : PrintController {
// Public Constructors
public StandardPrintController();
// Public Instance Methods
public override void OnEndPage(PrintDocument document, PrintPageEventArgs e); // overrides PrintController
public override void OnEndPrint(PrintDocument document, PrintEventArgs e); // overrides PrintController
public override Graphics OnStartPage(PrintDocument document, PrintPageEventArgs e); // overrides PrintController
public override void OnStartPrint(PrintDocument document, PrintEventArgs e); // overrides PrintController
}