ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Chart Assembly / GrapeCity.ActiveReports.Chart.Drawing.Drawing2D Namespace / GraphicsPath Class / AddCurve Method
An array of PointF structures that represents the points that define the curve.
A value that specifies the amount that the curve bends between control points.

In This Topic
    AddCurve Method (GraphicsPath)
    In This Topic
    Adds a spline curve to the current figure. A cardinal spline curve is used because the curve travels through each of the points in the array.
    Syntax
    'Declaration
     
    Public Sub AddCurve( _
       ByVal points() As PointF, _
       ByVal tension As Single _
    ) 
    public void AddCurve( 
       PointF[] points,
       float tension
    )

    Parameters

    points
    An array of PointF structures that represents the points that define the curve.
    tension
    A value that specifies the amount that the curve bends between control points.
    See Also