xtd 0.2.0
pen_alignment.h
Go to the documentation of this file.
1 #pragma once
5 #include "drawing2d.h"
6 #include <xtd/enum>
7 
9 namespace 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 };
Specifies the xtd::drawing::pen is positioned on the outside of the theoretical line.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Specifies that the xtd::drawing::pen is positioned on the inside of the theoretical line...
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, zero-width line.
Definition: pen_alignment.h:22
Specifies the xtd::drawing::pen is positioned to the right of the theoretical line.
Specifies that the xtd::drawing::pen object is centered over the theoretical line.
Contains xtd::drawing::drawing_2d/::matrix class.
Specifies the xtd::drawing::pen is positioned to the left of the theoretical line.
Provides the registration struct for enumerations.
Definition: enum_register.h:36