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




The curve points.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Points As RasterCollection(Of Point)
Visual Basic (Usage)Copy Code
Dim instance As RasterCurve
Dim value As RasterCollection(Of Point)
 
value = instance.Points
C# 
public RasterCollection<Point> Points {get;}
Managed Extensions for C++ 
public: __property RasterCollection<Point>* get_Points();
C++/CLI 
public:
property RasterCollection<Point>^ Points {
   RasterCollection<Point>^ get();
}

Return Value

A collection of Point objects that define the curve points.

Example

For an example, refer to RasterCurve.

Remarks

The number of points in the Points collection obey the following rules:
  • If Type is RasterCurveType.Bezier, the number of points in Points must be 3n + 1, where n >= 1. For example, the number of points can be 4, 7, 10, 13, and so on.
  • If Type is RasterCurveType.Standard, the number of points in Points must be greater than or equal to 3. For example, the number of points can be 3, 4, 5, 6, and so on.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also