System.Double
Get/Set
Provides access to the value of this AngularValue in terms of degrees. Using this property does not change the Units property.
Private Sub GeoCalcNET_AngularValue_InDegrees(ByVal av As GeoCalcNET.AngularValue)
Dim d As Double = av.InDegrees
av.InDegrees = 45
End Sub
private void GeoCalcNET_AngularValue_InDegrees(GeoCalcNET.AngularValue av)
{
double degVal = av.InDegrees;
av.InDegrees = 45.6;
}