ActiveReports Developer 7
AddCurve Method
See Also 
GrapeCity.ActiveReports.Extensibility.v7 Assembly > GrapeCity.ActiveReports.Extensibility.Rendering.Drawing Namespace > IPathEx Interface : AddCurve Method

pointData
An array of PointFEx structures that represents the points that define the curve.
tension
A value that specifies the amount that the curve bends between control points. Values greater than 1 produce unpredictable results.

Glossary Item Box

Adds a spline curve to the current figure

Syntax

Visual Basic (Declaration) 
Sub AddCurve( _
   ByVal pointData() As PointFEx, _
   ByVal tension As System.Single _
) 
C# 
void AddCurve( 
   PointFEx[] pointData,
   System.float tension
)

Parameters

pointData
An array of PointFEx structures that represents the points that define the curve.
tension
A value that specifies the amount that the curve bends between control points. Values greater than 1 produce unpredictable results.

See Also