xtd 0.2.0
right_to_left.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
24 enum class right_to_left {
31 };
32 }
33}
34
38};
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
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
@ no
The dialog box return value is No (usually sent from a button labeled No).
Definition dialog_result.hpp:59
@ yes
The dialog box return value is Yes (usually sent from a button labeled Yes).
Definition dialog_result.hpp:57
@ inherit
The direction the text read is inherited from the parent control.
Definition right_to_left.hpp:30
@ no
The text reads from left to right. This is the default.
Definition right_to_left.hpp:26
@ yes
The text reads from right to left.
Definition right_to_left.hpp:28
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition texts.hpp:219
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Provides the registration struct for enumerations.
Definition enum_register.hpp:38