CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
matrix_order.h
1
2#ifndef _matrix_order_h_
3#define _matrix_order_h_
4
5namespace System { namespace Drawing { namespace Drawing2D {
7 enum class MatrixOrder {
9 Prepend = 0,
11 Append = 1
12 };
13}}}
14
15#endif
MatrixOrder
Specifies the order of matrix transform operations.
Definition: matrix_order.h:7
@ Append
The new operation is applied after the old operation.
@ Prepend
The new operation is applied before the old operation.
Definition: db_command.h:9