Sets this Bezier curve's control points from an array of between 1 to 4 input points.
[Visual Basic 6.0] Sub PutCoords(
ByVal numPoints As Long, _
controlPoints As IPoint _
)
[Visual Basic .NET] Public Sub PutCoords ( _ ByVal numPoints As Integer, _ ByRef controlPoints As IPoint _ )
[C#] public void PutCoords ( int numPoints, ref IPoint controlPoints );
[Java] public void putCoords ( int numPoints, IPoint controlPoints ) throws IOException, AutomationException
[C++] HRESULT PutCoords( long numPoints, IPoint** controlPoints );
Parameters
numPoints
numPoints is a parameter of type long
controlPoints [in]
controlPoints is a parameter of type IPoint
It is recommended that the IBezierCurveGEN::PutCoords OLE Automation compliant version of this method be used instead of this version.
Use PutCoord to set a single control point.
