PrintController.cs 704 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. public abstract class PrintController
  13. {
  14. public PrintController ()
  15. {
  16. }
  17. [MonoTODO]
  18. public virtual void OnEndPage (PrintDocument document, PrintPageEventArgs e)
  19. {
  20. }
  21. [MonoTODO]
  22. public virtual void OnStartPrint (PrintDocument document, PrintEventArgs e)
  23. {
  24. }
  25. [MonoTODO]
  26. public virtual void OnEndPrint (PrintDocument document, PrintEventArgs e)
  27. {
  28. }
  29. [MonoTODO]
  30. public virtual Graphics OnStartPage (PrintDocument document, PrintPageEventArgs e)
  31. {
  32. throw new NotImplementedException();
  33. }
  34. }
  35. }