CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
content_alignment.h
1
2#ifndef _content_alignment_h_
3#define _content_alignment_h_
4
5namespace System { namespace Drawing {
7 enum class ContentAlignment {
9 TopLeft = 0x001,
11 TopCenter = 0x002,
13 TopRight = 0x004,
15 MiddleLeft = 0x010,
17 MiddleCenter = 0x020,
19 MiddleRight = 0x040,
21 BottomLeft = 0x100,
23 BottomCenter = 0x200,
25 BottomRight = 0x400,
26 };
27}}
28
29#endif
ContentAlignment
Specifies the content alignment.
Definition: content_alignment.h:7
@ MiddleLeft
Aligned vertically in the middle, and horizontally on the left.
@ TopRight
Aligned vertically at the top, and horizontally on the right.
@ MiddleCenter
Aligned vertically in the middle, and horizontally at the center.
@ MiddleRight
Aligned vertically in the middle, and horizontally on the right.
@ BottomRight
Aligned vertically at the bottom, and horizontally on the right.
@ TopCenter
Aligned vertically at the top, and horizontally at the center.
@ BottomLeft
Aligned vertically at the bottom, and horizontally on the left.
@ TopLeft
Aligned vertically at the top, and horizontally on the left.
@ BottomCenter
Aligned vertically at the bottom, and horizontally at the center.
Definition: db_command.h:9