PrivateFontCollection Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides a collection of font families built from font files that are provided by the client application.
public ref class PrivateFontCollection sealed : System::Drawing::Text::FontCollection
public sealed class PrivateFontCollection : System.Drawing.Text.FontCollection
[System.Runtime.InteropServices.ComVisible(false)]
public sealed class PrivateFontCollection : System.Drawing.Text.FontCollection
type PrivateFontCollection = class
inherit FontCollection
[<System.Runtime.InteropServices.ComVisible(false)>]
type PrivateFontCollection = class
inherit FontCollection
Public NotInheritable Class PrivateFontCollection
Inherits FontCollection
- Inheritance
- Attributes
Remarks
The PrivateFontCollection class allows applications to install a private version of an existing font without the requirement to replace the system version of the font. For example, GDI+ can create a private version of the Arial font in addition to the Arial font that the system uses. PrivateFontCollection can also be used to install fonts that do not exist in the operating system. This is a temporary font install that does not affect the system-installed collection. To see the installed collection, use the InstalledFontCollection class.
Note
In .NET 6 and later versions, the System.Drawing.Common package, which includes this type, is only supported on Windows operating systems. Use of this type in cross-platform apps causes compile-time warnings and run-time exceptions. For more information, see System.Drawing.Common only supported on Windows.
Constructors
PrivateFontCollection() |
Initializes a new instance of the PrivateFontCollection class. |
Properties
Families |
Gets the array of FontFamily objects associated with this FontCollection. (Inherited from FontCollection) |
Methods
AddFontFile(String) |
Adds a font from the specified file to this PrivateFontCollection. |
AddMemoryFont(IntPtr, Int32) |
Adds a font contained in system memory to this PrivateFontCollection. |
Dispose() |
Releases all resources used by this FontCollection. (Inherited from FontCollection) |
Dispose(Boolean) |
Releases the unmanaged resources used by the FontCollection and optionally releases the managed resources. (Inherited from FontCollection) |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |