InstalledFontCollection.cs 417 B

123456789101112131415161718192021
  1. //
  2. // System.Drawing.Text.InstalledFontCollection.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 sealed class InstalledFontCollection : FontCollection {
  10. // constructors
  11. [MonoTODO]
  12. public InstalledFontCollection() {
  13. throw new NotImplementedException ();
  14. }
  15. }
  16. }