PaperSource.cs 587 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // System.Drawing.PaperSource.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Printing
  11. {
  12. /// <summary>
  13. /// Summary description for PaperSource.
  14. /// </summary>
  15. public class PaperSource
  16. {
  17. [MonoTODO]
  18. public PaperSourceKind Kind{
  19. get {
  20. throw new NotImplementedException (); }
  21. }
  22. [MonoTODO]
  23. public string SourceName{
  24. get {
  25. throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. public override string ToString(){
  29. return SourceName;
  30. }
  31. }
  32. }