Label Property

Type

System.String

 

Access

Get/Set

 

Description

The Label property provides access to a string that gives the meaning of this AngularValue.

 

Example

[VB]

Private Sub GeoCalcNET_AngularValue_Label(ByVal av As GeoCalcNET.AngularValue)

Dim label As String = av.Label

av.Label = "Geodetic Latitude"

End Sub

 

[C#]

private void GeoCalcNET_AngularValue_Label(GeoCalcNET.AngularValue av)

{

String label = av.Label;

av.Label = "Paris Prime Meridian";

}