System.String
Get/Set
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.
Private Sub GeoCalcNET_GeodeticPoint_LocationString(ByVal pt As GeoCalcNET.GeodeticPoint)
pt.StringFormat = GeoCalcNET.GeodeticPoint.FormatOption.Georef
pt.LocationString = "HKAA1986018720"
End Sub
private void GeoCalcNET_GeodeticPoint_LocationString(GeoCalcNET.GeodeticPoint pt)
{
pt.StringFormat = GeoCalcNET.GeodeticPoint.FormatOption.Georef;
pt.LocationString = "HKAA1986018720";
}