Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
RasterCurveClose Enumeration
See Also  
Leadtools Namespace : RasterCurveClose Enumeration



Indicates how to close the curve.

Syntax

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

Members

MemberDescription
NoClose For n points, draw (n - 3) segments. For example, for points {P0, P1, P2, P3, P4}, draw segments P1P2 and P2P3
Close For n points draw (n) segments. For example, for points {P0, P1, P2, P3, P4}, draw segments P0P1, P1P2, P2P3, P3P4, P4P0
PartialClose For 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: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also