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 public enum CanvasFilledRegionDetermination
Members
| Member name | Value | Description |
---|
| Alternate | 0 | Specifies that self-intersecting regions are considered 'filled' based on the Alternate fill rule. |
| Winding | 1 | Specifies 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