xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
xtd.forms
include
xtd
forms
arrange_direction.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include <xtd/enum>
6
8
namespace
xtd
{
10
namespace
forms
{
23
enum class
arrange_direction
{
25
down
= 0x0004,
27
left
= 0x0000,
29
right
= 0x0000,
31
up
= 0x0004,
32
};
33
}
34
}
35
37
flags_attribute_
(
xtd::forms
, arrange_direction);
38
39
template
<>
struct
xtd::enum_register
<
xtd
::
forms::arrange_direction
> {
40
static
auto
values
() noexcept {
return
xtd::enum_collection<xtd::forms::arrange_direction>
{{
xtd::forms::arrange_direction::down
,
"down"
}, {
xtd::forms::arrange_direction::left
,
"left"
}, {
xtd::forms::arrange_direction::right
,
"right"
}, {
xtd::forms::arrange_direction::up
,
"up"
}};}
41
};
flags_attribute_
#define flags_attribute_(namespace_name, enum_type)
Provides the set attribute struct for enumerations helper.
Definition
flags_attribute.hpp:34
xtd::enum_collection
std::vector< std::pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition
enum_collection.hpp:24
xtd::forms::arrange_direction
arrange_direction
Specifies the direction the system uses to arrange minimized windows.
Definition
arrange_direction.hpp:23
xtd::forms::anchor_styles::right
@ right
Bind control edges to the right of its container.
Definition
anchor_styles.hpp:29
xtd::forms::anchor_styles::left
@ left
Bind control edges to the left of its container.
Definition
anchor_styles.hpp:27
xtd::forms::arrange_direction::up
@ up
Arranges vertically, from bottom to top.
Definition
arrange_direction.hpp:31
xtd::forms::arrange_direction::down
@ down
Arranges vertically, from top to bottom.
Definition
arrange_direction.hpp:25
xtd::forms::arrange_direction::right
@ right
Arranges horizontally, from right to left.
Definition
arrange_direction.hpp:29
xtd::forms::arrange_direction::left
@ left
Arranges horizontally, from left to right.
Definition
arrange_direction.hpp:27
xtd::forms
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition
texts.hpp:219
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
xtd::enum_register
Provides the registration struct for enumerations.
Definition
enum_register.hpp:38
xtd::enum_register::values
static auto values() noexcept
Definition
enum_register.hpp:55
Generated on
for xtd by
Gammasoft
. All rights reserved.