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


ICircularArc.ToAngle Property (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.ToAngle Property
ArcGIS Developer Help

ICircularArc.ToAngle Property

The angle, measured from a horizontal line through this circular arc's center point, that defines where this arc ends.

[Visual Basic .NET]
Public Property ToAngle As Double
[C#]
public double ToAngle {get; set;}
[C++]
HRESULT get_ToAngle(
  System.Double* outToAngle
);
[C++]
HRESULT put_ToAngle(
  double outToAngle
);
[C++]
Parameters
outToAngle [out, retval]

outToAngle is a parameter of type double* outToAngle
outToAngle is a parameter of type double

Product Availability

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

Description

The ToAngle is the angle at which the CircularArc ends.  The ToAngle is measured in radians (there are 2*pi radians in a full circle.  0 Radians is the horizontal line parallel to the unrotated X-Axis extending to the right of the CenterPoint.).  The ToAngle is the angle of the line drawn between the CenterPoint and the ToPoint.

Remarks

 

CircularArc ToAngle Example

See Also

ICircularArc Interface