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


IBezierCurve.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 > IBezierCurve Interface > IBezierCurve.PutCoords Method
ArcGIS Developer Help

IBezierCurve.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 ( _
    ByVal numPoints As Integer, _
    ByRef controlPoints As IPoint _
)
[C#]
public void PutCoords (
    int numPoints,
    ref IPoint controlPoints
);
[C++]
HRESULT PutCoords(
  long numPoints,
  IPoint** controlPoints
);
[C++]
Parameters
numPoints 

numPoints is a parameter of type long controlPoints [in]
controlPoints is a parameter of type IPoint**

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

It is recommended that the IBezierCurveGEN::PutCoords OLE Automation compliant version of this method be used instead of this version.

Remarks

Use PutCoord to set a single control point.

 

BezierCurve PutCoords Example

See Also

IBezierCurve Interface