System.String
Get/Set
The Label property provides access to a string that gives the meaning of this AngularValue.
Private Sub GeoCalcNET_AngularValue_Label(ByVal av As GeoCalcNET.AngularValue)
Dim label As String = av.Label
av.Label = "Geodetic Latitude"
End Sub
private void GeoCalcNET_AngularValue_Label(GeoCalcNET.AngularValue av)
{
String label = av.Label;
av.Label = "Paris Prime Meridian";
}