LocationString Property

Type

System.String

 

Access

Get/Set

 

Description

The LocationString property provides access to a string that gives the location of this GeodeticPoint in the format specified by StringFormat.  Setting this property may change the coordinate values for this point.

 

Example

[VB]

Private Sub GeoCalcNET_GeodeticPoint_LocationString(ByVal pt As GeoCalcNET.GeodeticPoint)

    pt.StringFormat = GeoCalcNET.GeodeticPoint.FormatOption.Georef

    pt.LocationString = "HKAA1986018720"

End Sub

 

[C#]

private void GeoCalcNET_GeodeticPoint_LocationString(GeoCalcNET.GeodeticPoint pt)

{

pt.StringFormat = GeoCalcNET.GeodeticPoint.FormatOption.Georef;

pt.LocationString = "HKAA1986018720";

}