This document is archived and information here might be outdated.  Recommended version.


IBezierCurveGEN.PutCoords Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IB > IBezierCurveGEN Interface > IBezierCurveGEN.PutCoords Method
ArcGIS Developer Help

IBezierCurveGEN.PutCoords Method

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*)*

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.

 

BezierCurve PutCoords Example

See Also

IBezierCurveGEN Interface