| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // System.Drawing.PreviewPrintController.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing
- {
- 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, PrintEventArgs e){
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void OnEndPrint(PrintDocument document, PrintEventArgs 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 ();
- }
- }
- }
|