LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
RasterCurveClose Enumeration
See Also  
Leadtools Namespace : RasterCurveClose Enumeration



Indicates how to close the curve.

Syntax

Visual Basic (Declaration) 
Public Enum RasterCurveClose 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As RasterCurveClose
C# 
public enum RasterCurveClose : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
public enum class RasterCurveClose : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
CloseFor n points draw (n) segments. For example, for points {P0, P1, P2, P3, P4}, draw segments P0P1, P1P2, P2P3, P3P4, P4P0
NoCloseFor n points, draw (n - 3) segments. For example, for points {P0, P1, P2, P3, P4}, draw segments P1P2 and P2P3
PartialCloseFor n points draw (n - 1) segments. For example, for points {P0, P1, P2, P3, P4}, draw segments P0P1, P1P2, P2P3, P3P4 (but not P4P0)

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.RasterCurveClose

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