| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Drawing.StandardPrintController.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing {
- /// <summary>
- /// Summary description for StandardPrintController.
- /// </summary>
- public class StandardPrintController : PrintController {
- // [MonoTODO]
- // public StandardPrintController() {
- // throw new NotImplementedException ();
- // }
- // [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 ();
- // }
- }
- }
|