PrintControler.cs 1019 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // System.Drawing.PrintControler.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. {
  12. /// <summary>
  13. /// Summary description for PrintControler.
  14. /// </summary>
  15. public abstract class PrintControler
  16. {
  17. public PrintControler()
  18. {
  19. //
  20. // TODO: Add constructor logic here
  21. //
  22. }
  23. //[MonoTODO]
  24. // public override void OnEndPage(PrintDocument document, PrintPageEventArgs e){
  25. // throw new NotImplementedException ();
  26. // }
  27. // //[MonoTODO]
  28. // public override void OnStartPrint(PrintDocument document, PrintPageEventArgs e){
  29. // throw new NotImplementedException ();
  30. // }
  31. // //[MonoTODO]
  32. // public override void OnEndPrint(PrintDocument document, PrintPageEventArgs e){
  33. // throw new NotImplementedException ();
  34. // }
  35. //[MonoTODO]
  36. // public override Graphics OnStartPage(PrintDocument document, PrintPageEventArgs e){
  37. // throw new NotImplementedException ();
  38. // }
  39. }
  40. }