2 types derived from FontCollection
System.Drawing.Common (2)
System\Drawing\Text\InstalledFontCollection.cs (1)
8public sealed unsafe class InstalledFontCollection : FontCollection
System\Drawing\Text\PrivateFontCollection.cs (1)
11public sealed unsafe class PrivateFontCollection : FontCollection
7 references to FontCollection
System.Drawing (1)
System.Drawing.cs (1)
159[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Text.FontCollection))]
System.Drawing.Common (6)
System\Drawing\FontConverter.cs (1)
370FontCollection collection = InstalledFontCollection.Instance;
System\Drawing\FontFamily.cs (3)
78/// <see cref='FontCollection'/> and with the specified name. 80public FontFamily(string name, FontCollection? fontCollection) => CreateFontFamily(name.OrThrowIfNull(), fontCollection); 84private void CreateFontFamily(ReadOnlySpan<char> name, FontCollection? fontCollection, bool createDefaultOnFail = false)
System\Drawing\Text\FontCollection.cs (2)
17/// Disposes of this <see cref='FontCollection'/> 28/// Gets the array of <see cref='FontFamily'/> objects associated with this <see cref='FontCollection'/>.