InDegrees Property

Type

System.Double

 

Access

Get/Set

 

Description

Provides access to the value of this AngularValue in terms of degrees.  Using this property does not change the Units property.  

 

Example

[VB]

Private Sub GeoCalcNET_AngularValue_InDegrees(ByVal av As GeoCalcNET.AngularValue)

Dim d As Double = av.InDegrees

av.InDegrees = 45

End Sub

 

[C#]

private void GeoCalcNET_AngularValue_InDegrees(GeoCalcNET.AngularValue av)

{

double degVal = av.InDegrees;

av.InDegrees = 45.6;

}