| 1234567891011121314151617181920212223242526 |
- //
- // System.Drawing.Text.InstalledFontCollection.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Everaldo Canuto [email protected]
- // Alexandre Pigolkine ( [email protected])
- // Sanjay Gupta ([email protected])
- //
- using System;
- using System.Drawing;
- namespace System.Drawing.Text {
- public sealed class InstalledFontCollection : FontCollection {
-
- internal InstalledFontCollection(IntPtr ptr): base (ptr)
- {}
- public InstalledFontCollection()
- {
- Status status = GDIPlus.GdipNewInstalledFontCollection (out nativeFontCollection);
- GDIPlus.CheckStatus (status);
- }
- }
- }
|