The angle, measured from a horizontal line through this circular arc's center point, that defines where this arc starts.
[Visual Basic 6.0] Property FromAngle As Double
[Visual Basic .NET] Public Property FromAngle As Double
[C#] public double FromAngle {get; set;}
[Java] public getFromAngle ( Double outFromAngle )
[Java] public void setFromAngle( Double outFromAngle ) throws IOException, AutomationException
[C++]
HRESULT get_FromAngle(
double* outFromAngle
);
[C++] HRESULT put_FromAngle( double outFromAngle);
Parameters
outFromAngle [out, retval]
outFromAngle is a parameter of type double
outFromAngle
outFromAngle is a parameter of type double
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.
