CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
combine_mode.h
1
2#ifndef _combine_mode_h_
3#define _combine_mode_h_
4
5namespace System { namespace Drawing { namespace Drawing2D {
7 enum class CombineMode {
9 Replace = 0,
11 Intersect = 1,
13 Union = 2,
15 Xor = 3,
17 Exclude = 4,
19 Complement = 5
20 };
21}}}
22
23#endif
CombineMode
Specifies how clipping regions are combined.
Definition: combine_mode.h:7
@ Replace
One clipping region is replaced by another.
@ Intersect
The two clipping regions are combined by taking their intersection.
@ Xor
The two clipping regions are combined by taking only the area enclosed by one or the other regions,...
@ Exclude
Two clipping regions are combined by taking the area of the first region that does not intersect with...
@ Union
The two clipping regions are combined by taking the union of both.
@ Complement
Two clipping regions are combined by taking the area of the second region that does not intersect wit...
Definition: db_command.h:9