| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- //
- // System.Drawing.PageSettings.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Printing
- {
- /// <summary>
- /// Summary description for PageSettings.
- /// </summary>
- public class PageSettings {//: IClonable
- //[MonoTODO]
- public PageSettings()
- {
- throw new NotImplementedException ();
- }
- //props
- //[MonoTODO]
- // public Rectangle Bounds{
- // get{
- // throw new NotImplementedException ();
- // }
- // set{
- // throw new NotImplementedException ();
- // }
- // }
- [MonoTODO]
- public bool Color{
- get{
- throw new NotImplementedException ();
- }
- set{
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public bool Landscape {
- get{
- throw new NotImplementedException ();
- }
- set{
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public Margins Margins{
- get{
- throw new NotImplementedException ();
- }
- set{
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public PaperSize PaperSize{
- get{
- throw new NotImplementedException ();
- }
- set{
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public PaperSource PaperSource{
- get{
- throw new NotImplementedException ();
- }
- set{
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public PrinterResolution PrinterResolution{
- get{
- throw new NotImplementedException ();
- }
- set{
- throw new NotImplementedException ();
- }
- }
- //[MonoTODO]
- // public PrinterSetting PrinterSetting{
- // get{
- // throw new NotImplementedException ();
- // }
- // set{
- // throw new NotImplementedException ();
- // }
- // }
- //[ComVisible(false)]
- [MonoTODO]
- public object Clone(){
- throw new NotImplementedException ();
- }
- //[ComVisible(false)]
- [MonoTODO]
- public void CopyToHdevmode(IntPtr hdevmode){
- throw new NotImplementedException ();
- }
- //[ComVisible(false)]
- [MonoTODO]
- public void SetHdevmode(IntPtr hdevmode){
- throw new NotImplementedException ();
- }
-
- //[ComVisible(false)]
- [MonoTODO]
- public override string ToString(){
- //FIXME: //THIS is wrong! This method is to be overridden!
- return base.ToString();
- }
- }
- }
|