xtd 0.2.0
anchor_styles.h File Reference
#include <xtd/enum.h>

Definition

Contains xtd::forms::anchor_styles enum class.

Include dependency graph for anchor_styles.h:
This graph shows which files directly or indirectly include this file:

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::anchor_styles {
  xtd::forms::anchor_styles::none = 0b0,
  xtd::forms::anchor_styles::top = 0b1,
  xtd::forms::anchor_styles::bottom = 0b10,
  xtd::forms::anchor_styles::left = 0b100,
  xtd::forms::anchor_styles::right = 0b1000,
  xtd::forms::anchor_styles::all = top | bottom | left | right
}
 Specifies how a control anchors to the edges of its container. More...