Label Property

Type

System.String

 

Access

Get/Set

 

Description

The Label property provides access to a string that gives meaning to this LinearValue.  The value of this string is for the users convenience, but it is generally used to describe that which this LinearValue measures.  For example, if this LinearValue is the North coordinate of a ProjectedPoint, then the Label may be "Northing".

 

Example

[VB]

Private Sub GeoCalcNET_LinearValue_Label(ByVal lv As GeoCalcNET.LinearValue)

Dim label As String = lv.Label

lv.Label = "Height"

End Sub

 

[C#]

private void GeoCalcNET_LinearValue_Label(GeoCalcNET.LinearValue lv)

{

String label = lv.Label;

lv.Label = "Easting";

}