Click or drag to resize
CanvasFilledRegionDetermination Enumeration
Specifies how to determine which parts of a path are considered filled or unfilled.

Namespace:  Microsoft.Graphics.Canvas.Geometry
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public enum CanvasFilledRegionDetermination
Members
  Member nameValueDescription
Alternate0Specifies that self-intersecting regions are considered 'filled' based on the Alternate fill rule.
Winding1Specifies that self-intersecting regions are considered 'filled' based on the Winding fill rule.
Remarks
The effects of this option are observable on self-intersecting geometry. See D2D1_FILL_MODE for more information.
See Also