xtd 0.2.0
Loading...
Searching...
No Matches
pen_type.h
Go to the documentation of this file.
1
4#pragma once
5#include "drawing2d.h"
6#include <xtd/enum>
7
9namespace xtd {
11 namespace drawing {
13 namespace drawing_2d {
21 enum class pen_type {
23 solid_color = 0,
25 hatch_fill = 1,
27 texture_fill = 2,
29 path_gradient = 3,
36 };
37 }
38 }
39}
40
44};
Contains xtd::drawing::drawing_2d::matrix class.
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:21
@ 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