xtd 0.2.0
Loading...
Searching...
No Matches
border_type.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace 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,
45 dotted,
48 };
49 }
50 }
51}
52
56};
The theme data allows you to specify the theme informations.
Definition theme.h:30
border_type
The border_type enum class specifies what kind of border to display.
Definition border_type.h:21
@ double_border
Defines a double border.
@ ridge
Defines a 3D ridged border. The effect depends on the border color value.
@ hidden
Defines a hidden border.
@ outset
Defines a 3D outset border. The effect depends on the border color value.
@ inset
Defines a 3D inset border. The effect depends on the border color value.
@ dot_dash
Defines a dot dashed border.
@ dot_dot_dash
Defines a dot dot dashed border.
@ dashed
Defines a dashed border.
@ dotted
Defines a dotted border.
@ solid
Defines a solid border.
@ groove
Defines a 3D grooved border. The effect depends on the border color value.
@ theme
Defines a 3D themed border. The effect depends on the border color value.
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 xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36