Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
FillMode Property
See Also 
Leadtools Namespace > RasterCurve Class : FillMode Property



Gets or sets a value that indicates how to handle complex crossing lines.

Syntax

Visual Basic (Declaration) 
Public Property FillMode As FillMode
Visual Basic (Usage)Copy Code
Dim instance As RasterCurve
Dim value As FillMode
 
instance.FillMode = value
 
value = instance.FillMode
C# 
public FillMode FillMode {get; set;}
C++/CLI 
public:
property FillMode FillMode {
   FillMode get();
   void set (FillMode value);
}

Return Value

A FillMode enumeration value that indicates how to handle complex crossing lines.

Example

For an example, refer to RasterCurve.

Remarks

ValueMeaning
WindingAll pixels that are inside the resulting exterior lines are in the region.
AlternateThe region includes the area between odd-numbered and even-numbered polygon sides on each scan line.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also