1 instantiation of InstalledFontCollection
System.Drawing.Common (1)
System\Drawing\Text\InstalledFontCollection.cs (1)
19internal static InstalledFontCollection Instance { get; } = new();
8 references to InstalledFontCollection
System.Drawing (1)
System.Drawing.cs (1)
162[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Text.InstalledFontCollection))]
System.Drawing.Common (7)
System\Drawing\FontConverter.cs (1)
370FontCollection collection = InstalledFontCollection.Instance;
System\Drawing\FontFamily.cs (3)
90|| nativeFontCollection == InstalledFontCollection.Instance.Pointer(); 250public static FontFamily[] Families => InstalledFontCollection.Instance.Families; 282return InstalledFontCollection.Instance.Families;
System\Drawing\Text\FontCollection.cs (1)
42bool installedFontCollection = GetType() == typeof(InstalledFontCollection);
System\Drawing\Text\InstalledFontCollection.cs (2)
11/// Initializes a new instance of the <see cref='InstalledFontCollection'/> class. 19internal static InstalledFontCollection Instance { get; } = new();