xtd 0.2.0
bounds_specified.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
22 enum class bounds_specified {
24 none = 0,
26 x = 0b1,
28 y = 0b10,
32 width = 0b100,
34 height = 0b1000,
39 };
40 }
41}
42
44flags_attribute_(xtd::forms, bounds_specified);
47};
#define flags_attribute_(namespace_name, enum_type)
Provides the set attribute struct for enumerations helper.
Definition flags_attribute.hpp:34
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
bounds_specified
Specifies the bounds of the control to use when defining a control's size and position....
Definition bounds_specified.hpp:22
@ none
No border.s.
Definition bounds_specified.hpp:24
@ y
Specifies that the top edge of the control is defined.
Definition bounds_specified.hpp:28
@ x
Specifies that the left edge of the control is defined.
Definition bounds_specified.hpp:26
@ height
Specifies that the height of the control is defined.
Definition bounds_specified.hpp:34
@ location
Specifies that both the x and y coordinates of the control are defined.
Definition bounds_specified.hpp:30
@ width
Specifies that the width of the control is defined.
Definition bounds_specified.hpp:32
@ size
Specifies that both the width and height property values of the control are defined.
Definition bounds_specified.hpp:36
@ none
no styles.
Definition anchor_styles.hpp:21
@ all
All flags except none.
Definition anchor_styles.hpp:31
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