xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
xtd.forms
include
xtd
forms
tab_alignment.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include <xtd/enum>
6
8
namespace
xtd
{
10
namespace
forms
{
22
enum class
tab_alignment
{
24
top
= 0,
26
bottom
= 1,
28
left
= 2,
30
right
= 3,
31
};
32
}
33
}
34
36
template
<>
struct
xtd::enum_register
<
xtd
::
forms::tab_alignment
> {
37
static
auto
values
()
noexcept
{
return
xtd::enum_collection<xtd::forms::tab_alignment>
{{
xtd::forms::tab_alignment::top
,
"top"
}, {
xtd::forms::tab_alignment::bottom
,
"bottom"
}, {
xtd::forms::tab_alignment::left
,
"left"
}, {
xtd::forms::tab_alignment::right
,
"right"
}};}
38
};
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::tab_alignment
tab_alignment
Specifies the locations of the tabs in a tab control.
Definition
tab_alignment.hpp:22
xtd::forms::tab_alignment::bottom
@ bottom
The tabs are located across the bottom of the control.
Definition
tab_alignment.hpp:26
xtd::forms::tab_alignment::right
@ right
The tabs are located along the right edge of the control.
Definition
tab_alignment.hpp:30
xtd::forms::tab_alignment::left
@ left
The tabs are located along the left edge of the control.
Definition
tab_alignment.hpp:28
xtd::forms::tab_alignment::top
@ top
The tabs are located across the top of the control.
Definition
tab_alignment.hpp:24
xtd::forms::anchor_styles::bottom
@ bottom
Bind control edges to the bottom of its container.
Definition
anchor_styles.hpp:25
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::anchor_styles::top
@ top
Bind control edges to the top of its container.
Definition
anchor_styles.hpp:23
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.