xtd 0.2.0
tab_alignment.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace forms {
20  enum class tab_alignment {
22  top = 0,
24  bottom = 1,
26  left = 2,
28  right = 3,
29  };
30  }
31 }
32 
34 template<> struct xtd::enum_register<xtd::forms::tab_alignment> {
36 };
tab_alignment
Specifies the locations of the tabs in a tab control.
Definition: tab_alignment.h:20
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
The tabs are located along the left edge of the control.
The tabs are located across the top of the control.
The tabs are located across the bottom of the control.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The tabs are located along the right edge of the control.
Provides the registration struct for enumerations.
Definition: enum_register.h:36