PrintEventArgs.cs 447 B

12345678910111213141516171819202122
  1. //
  2. // System.Drawing.PrintEventArgs.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc
  8. //
  9. using System;
  10. //NOTE: Complete! Aparently just a redifiniton of CancleEventArgs specific to Printing.
  11. namespace System.Drawing.Printing
  12. {
  13. /// <summary>
  14. /// Summary description for PrintEventArgs.
  15. /// </summary>
  16. public class PrintEventArgs : System.ComponentModel.CancelEventArgs
  17. {
  18. public PrintEventArgs()
  19. {
  20. }
  21. }
  22. }