This document is archived and information here might be outdated. Recommended version. |
Sets this Bezier curve's control points from an array of between 1 to 4 input points.
[Visual Basic .NET] Public Sub PutCoords ( _ ByRef controlPoints As IPoint[] _ )
[C#] public void PutCoords ( ref IPoint[] controlPoints );
[C++]
HRESULT PutCoords(
SAFEARRAY(IPoint)** controlPoints
);
[C++] Parameters controlPoints [in]
controlPoints is a parameter of type SAFEARRAY(IPoint*)*
Defines the control points of the bezier curve using an array of four Points. If the array is defined as an array from 0 to 3, then the index of each point corresponds to the control point they represent.
Use PutCoord to set a single control point.