xtd 0.2.0
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 const xtd::array<font_family>& families() const noexcept {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:61
Provides a base class for installed and private font collections.
Definition font_collection.hpp:22
const xtd::array< font_family > & families() const noexcept
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.
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes....
Definition object.hpp:43
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10