| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // System.Drawing.PrintControler.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing
- {
- /// <summary>
- /// Summary description for PrintControler.
- /// </summary>
- public abstract class PrintControler
- {
- public PrintControler()
- {
- //
- // TODO: Add constructor logic here
- //
- }
- //[MonoTODO]
- // public override void OnEndPage(PrintDocument document, PrintPageEventArgs e){
- // throw new NotImplementedException ();
- // }
- // //[MonoTODO]
- // public override void OnStartPrint(PrintDocument document, PrintPageEventArgs e){
- // throw new NotImplementedException ();
- // }
- // //[MonoTODO]
- // public override void OnEndPrint(PrintDocument document, PrintPageEventArgs e){
- // throw new NotImplementedException ();
- // }
- //[MonoTODO]
- // public override Graphics OnStartPage(PrintDocument document, PrintPageEventArgs e){
- // throw new NotImplementedException ();
- // }
- }
- }
|