Click or drag to resize
CanvasGeometryCombine Enumeration
Used for specifying how two geometries should be combined to form a third, new geometry.

Namespace:  Microsoft.Graphics.Canvas.Geometry
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public enum CanvasGeometryCombine
Members
  Member nameValueDescription
Union0The result geometry contains the set of all areas from either of the source geometries.
Intersect1The result geometry contains just the areas where the source geometries overlap.
Xor2The result geometry contains the areas from both the source geometries, except for any parts where they overlap.
Exclude3The result geometry contains any area that is in the first source geometry- but excludes any area belonging to the second geometry.
See Also