xtd 0.2.0
arrange_starting_position.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
35 }
36}
37
39flags_attribute_(xtd::forms, arrange_starting_position);
41
45};
#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
arrange_starting_position
Specifies the starting position that the system uses to arrange minimized windows.
Definition arrange_starting_position.hpp:23
@ bottom_left
Starts at the lower-left corner of the screen, which is the default position.
Definition arrange_starting_position.hpp:25
@ top_left
Starts at the upper-left corner of the screen.
Definition arrange_starting_position.hpp:29
@ hide
Hides minimized windows by moving them off the visible area of the screen.
Definition arrange_starting_position.hpp:33
@ bottom_right
Starts at the lower-right corner of the screen.
Definition arrange_starting_position.hpp:27
@ top_right
Starts at the upper-right corner of the screen.
Definition arrange_starting_position.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