| 1234567891011121314151617 |
- //
- // System.Drawing.Text.IFontCollection.cs
- //
- // Author: Alexandre Pigolkine ([email protected])
- //
- using System;
- namespace System.Drawing.Text {
- internal interface IFontCollectionFactory {
- IFontCollection InstalledFontCollection();
- IFontCollection PrivateFontCollection();
- }
-
- internal interface IFontCollection : IDisposable {
- FontFamily[] Families { get; }
- }
- }
|