This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IB > IBezierCurveGEN Interface > IBezierCurveGEN.PutCoords Method (ArcObjects .NET 10.5 SDK) |
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
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.