xtd 1.0.0
Loading...
Searching...
No Matches
font_collection.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "../font_family.hpp"
6#include <xtd/array>
7#include <xtd/object>
8
10namespace xtd {
12 namespace drawing {
14 namespace text {
22 class font_collection : public object {
23 public:
25
29 [[nodiscard]] auto families() const noexcept -> const xtd::array<font_family>& {return families_;}
31
32 protected:
34 font_collection() = default;
35
39 };
40 }
41 }
42}
Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the ba...
Definition array.hpp:64
Defines a group of type faces having a similar basic design and certain variations in styles....
Definition font_family.hpp:33
auto families() const noexcept -> const xtd::array< font_family > &
Gets the array of xtd::drawing::text::font_family objects associated with this xtd::drawing::text::fo...
Definition font_collection.hpp:29
font_collection()=default
Initialise new instance of xtd::drawing::text::font_collection class.
object()=default
Create a new instance of the ultimate base class object.
Contains xtd::drawing::font_family class.
The xtd::drawing::text namespace provides advanced GDI+ typography functionality.
Definition font_collection.hpp:14
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8