CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
pen_alignment.h
1
2#ifndef _pen_alignment_h_
3#define _pen_alignment_h_
4
5namespace System { namespace Drawing { namespace Drawing2D {
7 enum class PenAlignment {
9 Center = 0,
11 Inset = 1,
13 Outset = 2,
15 Left = 3,
17 Right = 4
18 };
19}}}
20
21#endif
PenAlignment
Specifies the alignment of a Pen object relative to an abstract reference 0-width line.
Definition: pen_alignment.h:7
@ Center
The Pen is positioned at the center of the reference line.
@ Outset
The Pen is positioned on the outside of the reference line.
@ Right
The Pen is positioned to the right of the reference line.
@ Left
The Pen is positioned to the left of the reference line.
@ Inset
The Pen is positioned on the inside of the reference line.
Definition: db_command.h:9