#include <xtd/enum>
Contains xtd::forms::bounds_specified enum class.
Go to the source code of this file.
Namespaces | |
xtd | |
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more. | |
xtd::forms | |
The xtd::forms namespace contains classes for creating Windows-based applications that take full advantage of the rich user interface features available in the Microsoft Windows operating system, Apple macOS and Linux like Ubuntu operating system. | |
Enumerations | |
enum | xtd::forms::bounds_specified { xtd::forms::bounds_specified::none = 0, xtd::forms::bounds_specified::x = 0b1, xtd::forms::bounds_specified::y = 0b10, xtd::forms::bounds_specified::location = x | y, xtd::forms::bounds_specified::width = 0b100, xtd::forms::bounds_specified::height = 0b1000, xtd::forms::bounds_specified::size = width | height, xtd::forms::bounds_specified::all = location | size } |
Specifies the bounds of the control to use when defining a control's size and position. This enumeration has a flags attribute that allows a bitwise combination of its member values. More... | |