xtd 0.2.0
border_type.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace forms {
12  namespace style_sheets {
21  enum class border_type {
23  none,
25  hidden = none,
27  solid,
29  inset,
31  outset,
33  groove,
35  ridge,
37  theme,
39  dashed,
41  dot_dash,
45  dotted,
48  };
49  }
50  }
51 }
52 
56 };
Defines a 3D inset border. The effect depends on the border color value.
border_type
The border_type enum class specifies what kind of border to display.
Definition: border_type.h:21
Defines a 3D outset border. The effect depends on the border color value.
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
Defines a 3D themed border. The effect depends on the border color value.
Defines a 3D grooved border. The effect depends on the border color value.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
Defines a 3D ridged border. The effect depends on the border color value.
Provides the registration struct for enumerations.
Definition: enum_register.h:36