// // System.Drawing.StandardPrintController.cs // // Author: // Dennis Hayes (dennish@Raytek.com) // // (C) 2002 Ximian, Inc // using System; namespace System.Drawing.Printing { /// /// Summary description for StandardPrintController. /// 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 (); // } } }