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


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

ICircularArc.FromAngle Property

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

[Visual Basic .NET]
Public Property FromAngle As Double
[C#]
public double FromAngle {get; set;}
[C++]
HRESULT get_FromAngle(
  System.Double* outFromAngle
);
[C++]
HRESULT put_FromAngle(
  double outFromAngle
);
[C++]
Parameters
outFromAngle [out, retval]

outFromAngle is a parameter of type double* outFromAngle
outFromAngle is a parameter of type double

Product Availability

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

Description

The FromAngle is the angle from which the CircularArc starts.  The FromAngle 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 FromAngle is the angle of the line drawn between the CenterPoint and the FromPoint.

Remarks

 

CircularArc FromAngle Example

See Also

ICircularArc Interface