PreviewPrintController.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // System.Drawing.PreviewPrintController.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 class PreviewPrintController : PrintController
  13. {
  14. private bool useantialias;
  15. public PreviewPrintController()
  16. {
  17. useantialias = false;
  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, PrintEventArgs e){
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public override void OnEndPrint(PrintDocument document, PrintEventArgs e){
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. public override Graphics OnStartPage(PrintDocument document, PrintPageEventArgs e){
  33. throw new NotImplementedException ();
  34. }
  35. public bool UseAntiAlias {
  36. get{
  37. return useantialias;
  38. }
  39. set{
  40. useantialias = value;
  41. }
  42. }
  43. [MonoTODO]
  44. public PreviewPageInfo [] GetPreviewPageInfo(){
  45. throw new NotImplementedException ();
  46. }
  47. }
  48. }