2
0

StandardPrintController.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Drawing.StandardPrintController.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Printing {
  11. /// <summary>
  12. /// Summary description for StandardPrintController.
  13. /// </summary>
  14. public class StandardPrintController : PrintController {
  15. // [MonoTODO]
  16. // public StandardPrintController() {
  17. // throw new NotImplementedException ();
  18. // }
  19. // [MonoTODO]
  20. // public override void OnEndPage(PrintDocument document, PrintPageEventArgs e){
  21. // throw new NotImplementedException ();
  22. // }
  23. // [MonoTODO]
  24. // public override void OnStartPrint(PrintDocument document, PrintPageEventArgs e){
  25. // throw new NotImplementedException ();
  26. // }
  27. // [MonoTODO]
  28. // public override void OnEndPrint(PrintDocument document, PrintPageEventArgs e){
  29. // throw new NotImplementedException ();
  30. // }
  31. // [MonoTODO]
  32. // public override Graphics OnStartPage(PrintDocument document, PrintPageEventArgs e){
  33. // throw new NotImplementedException ();
  34. // }
  35. }
  36. }