FillRule (Polyline)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets or sets a value that specifies how the interior fill of a Polyline is determined.
<object FillRule="FillRule" .../>
value = object.fillRule
object.fillRule = value
Property Value
Type: FillRule
One of the enumeration values that specifies the fill behavior.
This property is read/write. The default value is EvenOdd.
Remarks
The EvenOdd default setting for FillRule determines whether a point is inside a shape. It draws a ray from the point to infinity in any direction and counts the number of path segments from the specified shape that the ray crosses. If the number is odd, the point is inside; if it is even, the point is outside.
Specifying NonZero for FillRule determines whether a point is inside a shape by using a different model from EvenOdd. It draws a ray from the point to infinity in any direction and then examines the places where a segment of the shape crosses the ray. Starting with a count of zero, it adds one each time a segment crosses the ray from left to right and subtracts one each time a path segment crosses the ray from right to left. After it counts the crossings, if the result is zero, the point is outside the path. Otherwise, it is inside.