PrivateFontCollection.cs 762 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // System.Drawing.Text.PrivateFontCollection.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Everaldo Canuto [email protected]
  6. //
  7. using System;
  8. using System.Runtime.InteropServices;
  9. namespace System.Drawing.Text {
  10. [ComVisible(false)]
  11. public sealed class PrivateFontCollection : FontCollection {
  12. // constructors
  13. [MonoTODO]
  14. public PrivateFontCollection() {
  15. throw new NotImplementedException ();
  16. }
  17. // methods
  18. [MonoTODO]
  19. [ComVisible(false)]
  20. public void AddFontFile(string filename) {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. [ComVisible(false)]
  25. public void AddMemoryFont(IntPtr memory, int length) {
  26. throw new NotImplementedException ();
  27. }
  28. }
  29. }