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


ICircularArc.PutRadiusByPoint Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IC > ICircularArc Interface > ICircularArc.PutRadiusByPoint Method
ArcGIS Developer Help

ICircularArc.PutRadiusByPoint Method

Defines the radius of this circular arc to be the distance from the arc's center point to the input point; other properties remain unchanged.

[Visual Basic .NET]
Public Sub PutRadiusByPoint ( _
    ByVal radialPoint As IPoint _
)
[C#]
public void PutRadiusByPoint (
    IPoint radialPoint
);
[C++]
HRESULT PutRadiusByPoint(
  IPoint* radialPoint
);
[C++]
Parameters
radialPoint 

radialPoint is a parameter of type IPoint*

Product Availability

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

Description

PutRadiusByPoint sets the Radius of the Circular Arc to be the distance between the Center Point and the input Point.  This has the same effect as setting the Radius using the Radius property of the Circular Arc.

Remarks

 

CircularArc PutRadiusByPoint Example

See Also

ICircularArc Interface