xtd 0.2.0
Loading...
Searching...
No Matches
pen_alignment.h
Go to the documentation of this file.
1
4#pragma once
5#include "drawing2d.h"
6#include <xtd/enum>
7
9namespace xtd {
11 namespace drawing {
13 namespace drawing_2d {
22 enum class pen_alignment {
24 center = 0,
26 inset = 1,
28 outset = 2,
30 left = 3,
32 right = 4,
33 };
34 }
35 }
36}
37
41};
Contains xtd::drawing::drawing_2d::matrix class.
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
SSpecifies the alignment of a xtd::drawing::pen object in relation to the theoretical,...
Definition pen_alignment.h:22
@ 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