System::Drawing::Text::PrivateFontCollection class

PrivateFontCollection class

Represents a collection of font families provided by the client application. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class PrivateFontCollection : public System::Drawing::Text::FontCollection

Methods

MethodDescription
AddFont(const System::ArrayPtr<uint8_t>&, int)Adds the specified font to the collection.
AddFontFile(const String&)Adds a font from the specified file to the collection.
get_Families() overrideReturns an array of FontFamily objects associated with the font collection represented by the current object.

See Also