PrintController.cs 979 B

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