xtd 0.2.0
Loading...
Searching...
No Matches
pen_type.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace drawing {
12 namespace drawing_2d {
20 enum class pen_type {
22 solid_color = 0,
24 hatch_fill = 1,
26 texture_fill = 2,
28 path_gradient = 3,
35 };
36 }
37
40 namespace [[deprecated("Replaced by xtd::drawing::drawing_2d - Will be removed in version 0.4.0")]] drawing2d {
43 using pen_type [[deprecated("Replaced by xtd::drawing::drawing_2d::pen_type - Will be removed in version 0.4.0")]] = xtd::drawing::drawing_2d::pen_type;
44 }
45 }
46}
47
51};
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
pen_type
Specifies the type of fill a xtd::drawing::pen object uses to fill lines.
Definition pen_type.h:20
@ hatch_fill
Specifies a hatch fill.
@ linear_gradient
Specifies a linear gradient fill.
@ radial_gradient
Specifies a radial gradient fill.
@ solid_color
Specifies a solid fill.
@ texture_fill
Specifies a bitmap texture fill.
@ path_gradient
Specifies a path gradient fill.
@ conical_gradient
Specifies a conical gradient fill.
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