FillRule Property (Polygon)

Gets or sets a value that specifies how the interior fill of the shape is determined.

XAML
<object FillRule="FillRule" .../>
Scripting
value = object.FillRule
object.FillRule = value

Property Value

FillRule

A value of the FillRule enumeration that specifies the fill behavior.

This property is read/write. The default value is EvenOdd.

Remarks

The EvenOdd enumeration value determines the "insideness" of a point on the 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.

The Nonzero enumeration value determines the "insideness" of a point on the shape by a different model than 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.

Fill rule illustration

Fill rule illustration

Applies To

Polygon

See Also

Shapes and Drawing in Silverlight Overview