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(
Array* controlPoints
);
[C++]Parameters
controlPoints [in] controlPoints is a parameter of type Array
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Description
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.
Remarks
Use PutCoord to set a single control point.