CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
line_join.h
1
2#ifndef _aspose_drawing_drawing2d_line_join_h_
3#define _aspose_drawing_drawing2d_line_join_h_
4
5#include <system/enum.h>
6
7namespace System { namespace Drawing { namespace Drawing2D {
9 enum class LineJoin {
12 Miter = 0,
14 Bevel = 1,
16 Round = 2,
19 MiterClipped = 3
20 };
21}}}
22
25template<>
26struct EnumMetaInfo<System::Drawing::Drawing2D::LineJoin>
27{
30 static ASPOSECPP_SHARED_API const std::array<std::pair<System::Drawing::Drawing2D::LineJoin, const char_t*>, 4>& values();
31};
32
33#endif
@ Round
A circular cap that rounds off both ends of a dash.
LineJoin
Specifies how consequent lines or curves are joined.
Definition: line_join.h:9
@ MiterClipped
Mitered join which produces a sharp or beveled corner depending on whether the length of the miter ex...
@ Bevel
Bevel join which produces a diagonal corner.
@ Miter
Mitered join which produces a sharp or clipped corner depending on whether the length of the miter ex...
Definition: db_command.h:9