ItfFontCollection.cs 376 B

1234567891011121314151617
  1. //
  2. // System.Drawing.Text.IFontCollection.cs
  3. //
  4. // Author: Alexandre Pigolkine ([email protected])
  5. //
  6. using System;
  7. namespace System.Drawing.Text {
  8. internal interface IFontCollectionFactory {
  9. IFontCollection InstalledFontCollection();
  10. IFontCollection PrivateFontCollection();
  11. }
  12. internal interface IFontCollection : IDisposable {
  13. FontFamily[] Families { get; }
  14. }
  15. }