2
0

FontCollection.cs 617 B

1234567891011121314151617181920212223242526272829303132
  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. // methods
  11. [MonoTODO]
  12. public void Dispose() {
  13. throw new NotImplementedException ();
  14. }
  15. [MonoTODO]
  16. protected virtual void Dispose(bool disposing) {
  17. throw new NotImplementedException ();
  18. }
  19. // properties
  20. [MonoTODO]
  21. public FontFamily[] Families {
  22. get { throw new NotImplementedException (); }
  23. }
  24. }
  25. }