InRadians Property

Type

System.Double

 

Access

Get/Set

 

Description

The InRadians property provides access to the value of this AngularValue in terms of radians.  Using this property does not change the Units property.

 

Example

[VB]

Private Sub GeoCalcNET_AngularValue_InRadians(ByVal av As GeoCalcNET.AngularValue)

Dim r As Double = av.InRadians

av.InRadians = 1.04

End Sub

 

[C#]

private void GeoCalcNET_AngularValue_InRadians(GeoCalcNET.AngularValue av)

{

double radVal = av.InRadians;

av.InRadians = 3.2;

}