| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // System.Drawing.Text.FontCollection.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Everaldo Canuto [email protected]
- //
- using System;
- namespace System.Drawing.Text {
- public abstract class FontCollection : IDisposable {
- internal IFontCollection implementation;
-
- // methods
- [MonoTODO]
- public void Dispose()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void Dispose (bool disposing)
- {
- throw new NotImplementedException ();
- }
- // properties
- [MonoTODO]
- public FontFamily[] Families
- {
- get { return implementation.Families; }
- }
- }
- }
|