| 12345678910111213141516171819202122 |
- //
- // System.Drawing.PrintEventArgs.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- //NOTE: Complete! Aparently just a redifiniton of CancleEventArgs specific to Printing.
- namespace System.Drawing.Printing
- {
- /// <summary>
- /// Summary description for PrintEventArgs.
- /// </summary>
- public class PrintEventArgs : System.ComponentModel.CancelEventArgs
- {
- public PrintEventArgs()
- {
- }
- }
- }
|