xtd 0.2.0
arrange_direction.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace forms {
21  enum class arrange_direction {
23  down = 0x0004,
25  left = 0x0000,
27  right = 0x0000,
29  up = 0x0004,
30  };
31  }
32 }
33 
36 
37 template<> struct xtd::enum_register<xtd::forms::arrange_direction> {
39 };
Arranges horizontally, from left to right.
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
Arranges vertically, from top to bottom.
arrange_direction
Specifies the direction the system uses to arrange minimized windows.
Definition: arrange_direction.h:21
Arranges horizontally, from right to left.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
#define flags_attribute_(namespace_name, enum_type)
Provides the set attribute struct for enumerations helper.
Definition: flags_attribute.h:34
Arranges vertically, from bottom to top.
Provides the registration struct for enumerations.
Definition: enum_register.h:36