| 1234567891011121314151617181920212223242526272829303132 |
- //
- // 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 {
- // methods
- [MonoTODO]
- public void Dispose() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void Dispose(bool disposing) {
- throw new NotImplementedException ();
- }
- // properties
- [MonoTODO]
- public FontFamily[] Families {
- get { throw new NotImplementedException (); }
- }
- }
- }
|