Click or drag to resize

PdfFillMethod Enumeration

Defines how a path in PDF page content will be filled.

Namespace:  Atalasoft.PdfDoc.Generating.Rendering
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public enum PdfFillMethod
Members
  Member nameDescription
NonZeroWinding This fill method represents the non-zero winding rule. In this method, horizontal rays are fired through the path and if segments cross the ray from bottom to top, 1 is added to a winding count. If segments cross the ray from top to bottom, 1 is subtracted from the winding count. If the winding count is non-zero, the path will be filled along the ray. If the winding number is 0, the path will be empty along the ray.
EvenOdd This fill method represents the even/odd rule. In this method, horizontal rays are fired through the path and a running total of segments crossing the ray is kept. If the running total is odd, the path will be filled along the ray. If the running total is even, the path will not be filled along the ray.
See Also