FontCollection.cs 667 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // System.Drawing.Text.FontCollection.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Everaldo Canuto [email protected]
  6. //
  7. using System;
  8. namespace System.Drawing.Text {
  9. public abstract class FontCollection : IDisposable {
  10. internal IFontCollection implementation;
  11. // methods
  12. [MonoTODO]
  13. public void Dispose()
  14. {
  15. throw new NotImplementedException ();
  16. }
  17. [MonoTODO]
  18. protected virtual void Dispose (bool disposing)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. // properties
  23. [MonoTODO]
  24. public FontFamily[] Families
  25. {
  26. get { return implementation.Families; }
  27. }
  28. }
  29. }