Version

CurveTo Method (IPath)

Draws a Bezier spline.
Syntax
'Declaration
 
Sub CurveTo( _
   ByVal x1 As System.Single, _
   ByVal y1 As System.Single, _
   ByVal x2 As System.Single, _
   ByVal y2 As System.Single, _
   ByVal x3 As System.Single, _
   ByVal y3 As System.Single _
) 
void CurveTo( 
   System.float x1,
   System.float y1,
   System.float x2,
   System.float y2,
   System.float x3,
   System.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 8.1, Windows 8.1, Windows 8, 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

View on GitHub