Version

CurveTo Method (IPath)

Draws a Bezier spline.
Syntax
'Declaration
 
Sub CurveTo( _
   ByVal x1 As Single, _
   ByVal y1 As Single, _
   ByVal x2 As Single, _
   ByVal y2 As Single, _
   ByVal x3 As Single, _
   ByVal y3 As Single _
) 
void CurveTo( 
   float x1,
   float y1,
   float x2,
   float y2,
   float x3,
   float y3
)

Parameters

x1
X-coordinate of the first control point of the curve.
y1
Y-coordinate of the first control point of the curve.
x2
X-coordinate of the second control point of the curve.
y2
Y-coordinate of the second control point of the curve.
x3
X-coordinate of the ending point of the curve.
y3
Y-coordinate of the ending point of the curve.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also