DekGenius.com
[ Team LiB ] Previous Section Next Section

FontCollectiondisposable

System.Drawing.Text (system.drawing.dll)abstract class

This class is the abstract base for a collection of fonts.

You can use the Families property to retrieve an array of System.Drawing.FontFamily objects representing the fonts in the collection.

See InstalledFontCollection and PrivateFontCollection for more information.

public abstract class FontCollection : IDisposable {
// Public Instance Properties
   public FontFamily[ ] Families{get; }
// Public Instance Methods
   public void Dispose();  // implements IDisposable
// Protected Instance Methods
   protected virtual void Dispose(bool disposing);
   protected override void Finalize();  // overrides object
}

Subclasses

InstalledFontCollection, PrivateFontCollection

Passed To

System.Drawing.FontFamily.FontFamily()

    [ Team LiB ] Previous Section Next Section