xtd 0.2.0
Loading...
Searching...
No Matches
arrange_direction.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace 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
35flags_attribute_(xtd::forms, arrange_direction);
36
39};
#define flags_attribute_(namespace_name, enum_type)
Provides the set attribute struct for enumerations helper.
Definition flags_attribute.h:34
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
arrange_direction
Specifies the direction the system uses to arrange minimized windows.
Definition arrange_direction.h:21
@ right
Bind control edges to the right of its container.
@ left
Bind control edges to the left of its container.
@ up
Arranges vertically, from bottom to top.
@ down
Arranges vertically, from top to bottom.
@ right
Arranges horizontally, from right to left.
@ left
Arranges horizontally, from left to right.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
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