Enum that represents the different ways a region's overlapping polygons may be filled.
[Visual Basic] Public Enum PolyFillMode [C#] public enum PolyFillMode [C++] public enum PolyFillMode
[JScript] In JScript, you can use the enumerations in the NGWS frameworks, but you cannot define your own.
Member Name | Description |
---|---|
Alternate | When the polygon-filling mode is ALTERNATE, the system fills the area between odd-numbered and even-numbered polygon sides on each scan line. That is, the system fills the area between the first and second side, between the third and fourth side, and so on. This mode is the default. |
Max | [To be supplied.] |
Min | [To be supplied.] |
Winding | When the polygon-filling mode is WINDING, the system uses the direction in which a figure was drawn to determine whether to fill an area. Each line segment in a polygon is drawn in either a clockwise or a counterclockwise direction. Whenever an imaginary line drawn from an enclosed area to the outside of a figure passes through a clockwise line segment, a count is incremented. When the line passes through a counterclockwise line segment, the count is decremented. The area is filled if the count is nonzero when the line reaches the outside of the figure. |
Namespace: System.Drawing
Assembly: System.Drawing.dll