LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
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 LeadFillMode
Visual Basic (Usage)Copy Code
Dim instance As RasterCurve
Dim value As LeadFillMode
 
instance.FillMode = value
 
value = instance.FillMode
C# 
public LeadFillMode FillMode {get; set;}
C++/CLI 
public:
property LeadFillMode FillMode {
   LeadFillMode get();
   void set (    LeadFillMode value);
}

Property Value

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

Example

For an example, refer to RasterCurve.

Remarks

Value Meaning
LeadFillMode.Winding All pixels that are inside the resulting exterior lines are in the region.
LeadFillMode.Alternate The region includes the area between odd-numbered and even-numbered polygon sides on each scan line.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7

See Also