xtd 0.2.0
Loading...
Searching...
No Matches
pen_alignment.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace drawing {
12 namespace drawing_2d {
21 enum class pen_alignment {
23 center = 0,
25 inset = 1,
27 outset = 2,
29 left = 3,
31 right = 4,
32 };
33 }
34
37 namespace [[deprecated("Replaced by xtd::drawing::drawing_2d - Will be removed in version 0.4.0")]] drawing2d {
40 using pen_alignment [[deprecated("Replaced by xtd::drawing::drawing_2d::pen_alignment - Will be removed in version 0.4.0")]] = xtd::drawing::drawing_2d::pen_alignment;
41 }
42 }
43}
44
48};
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
pen_alignment
Specifies the alignment of a xtd::drawing::pen object in relation to the theoretical,...
Definition pen_alignment.h:21
@ right
Specifies the xtd::drawing::pen is positioned to the right of the theoretical line.
@ outset
Specifies the xtd::drawing::pen is positioned on the outside of the theoretical line.
@ left
Specifies the xtd::drawing::pen is positioned to the left of the theoretical line.
@ inset
Specifies that the xtd::drawing::pen is positioned on the inside of the theoretical line.
@ center
Specifies that the xtd::drawing::pen object is centered over the theoretical line.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36