CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
dash_cap.h
1
2#ifndef _aspose_drawing_drawing2d_dash_cap_h_
3#define _aspose_drawing_drawing2d_dash_cap_h_
4
5#include <system/enum.h>
6
7namespace System { namespace Drawing { namespace Drawing2D {
9 enum class DashCap {
11 Flat = 0,
13 Round = 2,
15 Triangle = 3
16 };
17
18}}}
19
22template<>
23struct EnumMetaInfo<System::Drawing::Drawing2D::DashCap>
24{
27 static ASPOSECPP_SHARED_API const std::array<std::pair<System::Drawing::Drawing2D::DashCap, const char_t*>, 3>& values();
28};
29
30#endif
DashCap
Specifies the type of a cap used at the both ends of a dash in a dashed line.
Definition: dash_cap.h:9
@ Triangle
A triangular cap that points both ends of a dash.
@ Flat
A square cap that squares off both ends of a dash.
@ Round
A circular cap that rounds off both ends of a dash.
Definition: db_command.h:9