AngularUnit Constructor

[VB]

Public Sub New()

[C#]

public AngularUnit()

 

Description

Constructs a new AngularUnit instance.  By default, the UnitsPerDegree property is set to 1, thus making the newly constructed AngularUnit the same as degrees.

 

Example

[VB]

Private Sub GeoCalcNET_AngularUnit()

Dim au As New GeoCalcNET.AngularUnit

au.Abbreviation = "deg"

End Sub

 

[C#]

private void GeoCalcNET_AngularUnit()

{

GeoCalcNET.AngularUnit au = new GeoCalcNET.AngularUnit();

au.Abbreviation = "deg";

}