xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
xtd.forms
include
xtd
forms
right_to_left.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include <xtd/enum>
6
8
namespace
xtd
{
10
namespace
forms
{
24
enum class
right_to_left
{
26
no
,
28
yes
,
30
inherit
,
31
};
32
}
33
}
34
36
template
<>
struct
xtd::enum_register
<
xtd
::
forms::right_to_left
> {
37
static
auto
values
()
noexcept
{
return
xtd::enum_collection<xtd::forms::right_to_left>
{{
xtd::forms::right_to_left::no
,
"no"
}, {
xtd::forms::right_to_left::yes
,
"yes"
}, {
xtd::forms::right_to_left::inherit
,
"inherit"
}};}
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::right_to_left
right_to_left
Specifies a value indicating whether the text appears from right to left, such as when using Hebrew o...
Definition
right_to_left.hpp:24
xtd::forms::dialog_result::no
@ no
The dialog box return value is No (usually sent from a button labeled No).
Definition
dialog_result.hpp:59
xtd::forms::dialog_result::yes
@ yes
The dialog box return value is Yes (usually sent from a button labeled Yes).
Definition
dialog_result.hpp:57
xtd::forms::right_to_left::inherit
@ inherit
The direction the text read is inherited from the parent control.
Definition
right_to_left.hpp:30
xtd::forms::right_to_left::no
@ no
The text reads from left to right. This is the default.
Definition
right_to_left.hpp:26
xtd::forms::right_to_left::yes
@ yes
The text reads from right to left.
Definition
right_to_left.hpp:28
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.