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



Indicates the type of curve that is being defined.

Syntax

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

Members

MemberDescription
Bezier A series of Bezier curves that use the points as control points. In this case, the number of points must be 3n + 1, where n >= 1. For example, number of points can be 4, 7, 10, 13, and so on. The first four points define the first Bezier curve, and each subsequent group of three points defines the next Bezier curve, using the last point of the previous Bezier curve as the starting point.
Standard A smooth curve that goes through all of the points. In this case, there must be at least three points.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.RasterCurveType

Requirements

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

See Also