xtd 0.2.0
left_right_alignment.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace forms {
19  enum class left_right_alignment {
21  left = 0,
23  right = 1,
24  };
25  }
26 }
27 
29 template<> struct xtd::enum_register<xtd::forms::left_right_alignment> {
31 };
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
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
The object or text is aligned to the left of the reference point.
The object or text is aligned to the right of the reference point.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
left_right_alignment
Specifies whether an object or text is aligned to the left or right of a reference point...
Definition: left_right_alignment.h:19
Provides the registration struct for enumerations.
Definition: enum_register.h:36