| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // System.Drawing.PrintController.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing
- {
- public abstract class PrintController
- {
- public PrintController ()
- {
- }
- [MonoTODO]
- public virtual void OnEndPage (PrintDocument document, PrintPageEventArgs e)
- {
- }
- [MonoTODO]
- public virtual void OnStartPrint (PrintDocument document, PrintEventArgs e)
- {
- }
- [MonoTODO]
- public virtual void OnEndPrint (PrintDocument document, PrintEventArgs e)
- {
- }
- [MonoTODO]
- public virtual Graphics OnStartPage (PrintDocument document, PrintPageEventArgs e)
- {
- throw new NotImplementedException();
- }
- }
- }
|