Defines a group of type faces having a similar basic design and certain variations in styles. This class cannot be inherited.
Public Constructors | |
| font_family (const xtd::string &name) | |
| Initializes a new xtd::drawing::font_family with the specified name. | |
| font_family (text::generic_font_families generic_font_families) | |
| Initializes a new xtd::drawing::font_family from the specified generic font family. | |
| font_family (const xtd::string &name, const text::font_collection &font_collection) | |
| Initializes a new xtd::drawing::font_family in the specified font_collection with the specified name. | |
Public Properties | |
| auto | name () const noexcept -> const xtd::string & |
| Gets the name of this font_family. | |
Public Methods | |
| auto | equals (const xtd::object &obj) const noexcept -> bool override |
| Determines whether the specified object is equal to the current object. | |
| auto | equals (const font_family &other) const noexcept -> bool override |
| Determines whether the specified object is equal to the current object. | |
| auto | get_cell_ascent (font_style style) const -> xtd::int32 |
| Returns the cell ascent, in design units, of the font_family of the specified style. | |
| auto | get_cell_descent (font_style style) const -> xtd::int32 |
| Returns the cell descent, in design units, of the font_family of the specified style. | |
| auto | get_em_height (font_style style) const noexcept -> xtd::int32 |
| Gets the height, in font design units, of the em square for the specified style. | |
| auto | get_hash_code () const noexcept -> xtd::usize override |
| Serves as a hash function for a particular type. | |
| auto | get_line_spacing (font_style style) const -> xtd::int32 |
| Returns the line spacing, in design units, of the font_family of the specified style. The line spacing is the vertical distance between the base lines of two consecutive lines of text. | |
| auto | get_name (int32 language) const -> xtd::string |
| Returns the name, in the specified language, of this font_family. | |
| auto | is_style_available (font_style style) const -> bool |
| Indicates whether the specified font_style enumeration is available. | |
| auto | to_string () const noexcept -> xtd::string override |
| Converts this font_family to a human-readable string representation. | |
Public Static Properties | |
| static auto | families () noexcept -> xtd::array< font_family > |
| Returns an array that contains all the font_family objects associated with the current graphics context. | |
| static auto | generic_monospace () noexcept -> font_family |
| Gets a generic monospace font_family. | |
| static auto | generic_sans_serif () noexcept -> font_family |
| Gets a generic sans serif font_family. | |
| static auto | generic_serif () noexcept -> font_family |
| Gets a generic serif font_family. | |
Additional Inherited Members | |
| object ()=default | |
| Create a new instance of the ultimate base class object. | |
| virtual auto | get_type () const noexcept -> type_object |
| Gets the type of the current instance. | |
| template<typename object_t> | |
| auto | memberwise_clone () const -> xtd::unique_ptr_object< object_t > |
| Creates a shallow copy of the current object. | |
| virtual auto | equals (const font_family &) const noexcept -> bool=0 |
| Indicates whether the current object is equal to another object of the same type. | |
| template<typename object_a_t, typename object_b_t> | |
| static auto | equals (const object_a_t &object_a, const object_b_t &object_b) noexcept -> bool |
| Determines whether the specified object instances are considered equal. | |
| template<typename object_a_t, typename object_b_t> | |
| static auto | reference_equals (const object_a_t &object_a, const object_b_t &object_b) noexcept -> bool |
| Determines whether the specified object instances are the same instance. | |
|
explicit |
Initializes a new xtd::drawing::font_family with the specified name.
| name | The name of the new xtd::drawing::font_family. |
| std::invalid_argument | name is an empty string ("") - or - name specifies a font that is not installed on the computer running the application. |
|
explicit |
Initializes a new xtd::drawing::font_family from the specified generic font family.
| generic_font_families | The xtd::drawing::text::generic_font_families from which to create the new font_family. |
| xtd::drawing::font_family::font_family | ( | const xtd::string & | name, |
| const text::font_collection & | font_collection ) |
Initializes a new xtd::drawing::font_family in the specified font_collection with the specified name.
| name | The name of the new xtd::drawing::font_family. |
| font_collection | The FontCollection that contains this FontFamily. |
| std::invalid_argument | name is an empty string ("") - or - name specifies a font that is not installed on the computer running the application - or - name specifies a font that is not a part of specified font_collection.. |
|
nodiscardnoexcept |
Gets the name of this font_family.
|
staticnodiscardnoexcept |
Returns an array that contains all the font_family objects associated with the current graphics context.
|
staticnodiscardnoexcept |
Gets a generic monospace font_family.
|
staticnodiscardnoexcept |
Gets a generic sans serif font_family.
|
staticnodiscardnoexcept |
Gets a generic serif font_family.
|
nodiscardoverridevirtualnoexcept |
Determines whether the specified object is equal to the current object.
| obj | The object to compare with the current object. |
Reimplemented from xtd::object.
|
nodiscardoverridenoexcept |
Determines whether the specified object is equal to the current object.
| other | The object to compare with the current object. |
|
nodiscard |
Returns the cell ascent, in design units, of the font_family of the specified style.
| style | A font_style that contains style information for the font. |
|
nodiscard |
Returns the cell descent, in design units, of the font_family of the specified style.
| style | A font_style that contains style information for the font. |
|
nodiscardnoexcept |
Gets the height, in font design units, of the em square for the specified style.
| style | A font_style that contains style information for the font. |
|
nodiscardoverridevirtualnoexcept |
Serves as a hash function for a particular type.
Reimplemented from xtd::object.
|
nodiscard |
Returns the line spacing, in design units, of the font_family of the specified style. The line spacing is the vertical distance between the base lines of two consecutive lines of text.
| style | A font_style that contains style information for the font. |
|
nodiscard |
Returns the name, in the specified language, of this font_family.
| language | The language in which the name is returned. |
|
nodiscard |
Indicates whether the specified font_style enumeration is available.
| style | The font_style to test. |
|
nodiscardoverridevirtualnoexcept |
Converts this font_family to a human-readable string representation.
Reimplemented from xtd::object.