| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // System.Drawing.PreviewPrintController.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing
- {
- /// <summary>
- /// Summary description for PreviewPrintController.
- /// </summary>
- public class PreviewPrintController : PrintController
- {
- private bool useantialias;
- public PreviewPrintController()
- {
- useantialias = false;
- }
- // //[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 ();
- //}
-
- public bool UseAntiAlias {
- get{
- return useantialias;
- }
- set{
- useantialias = value;
- }
- }
- //[MonoTODO]
- public PreviewPageInfo [] GetPreviewPageInfo(){
- throw new NotImplementedException ();
- }
- }
- }
|