xtd 0.2.0
linear_gradient_mode.hpp
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 {
29 }
30
33 namespace [[deprecated("Replaced by xtd::drawing::drawing_2d - Will be removed in version 0.4.0.")]] drawing2d {
36 using linear_gradient_mode [[deprecated("Replaced by xtd::drawing::drawing_2d::linear_gradient_mode - Will be removed in version 0.4.0.")]] = xtd::drawing::drawing_2d::linear_gradient_mode;
37 }
38 }
39}
40
44};
std::vector< std::pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.hpp:24
linear_gradient_mode
Specifies the direction of a linear gradient.
Definition linear_gradient_mode.hpp:19
@ horizontal
Specifies a gradient from left to right.
Definition linear_gradient_mode.hpp:21
@ forward_diagonal
Specifies a gradient from upper left to lower right.
Definition linear_gradient_mode.hpp:25
@ backward_diagonal
Specifies a gradient from upper right to lower left.
Definition linear_gradient_mode.hpp:27
@ vertical
Specifies a gradient from top to bottom.
Definition linear_gradient_mode.hpp:23
@ horizontal
A pattern of horizontal lines.
Definition hatch_style.hpp:22
@ forward_diagonal
A pattern of lines on a diagonal from upper left to lower right.
Definition hatch_style.hpp:28
@ backward_diagonal
A pattern of lines on a diagonal from upper right to lower left.
Definition hatch_style.hpp:31
@ vertical
A pattern of vertical lines.
Definition hatch_style.hpp:25
The xtd::drawing::drawing_2d namespace provides advanced two-dimensional and vector graphics function...
Definition compositing_mode.hpp:12
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Provides the registration struct for enumerations.
Definition enum_register.hpp:38