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