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.
Sub GeodeticPoint_LocationString()
Dim pt As New GeodeticPoint
pt.StringFormat = gfoGeoref
pt.LocationString = "HKAA1986018720"
End Sub
procedure GeodeticPoint_LocationString();
var
pt : GeodeticPoint;
begin
pt := CoGeodeticPoint.Create;
pt.StringFormat := gfoGeoref;
pt.LocationString := 'HKAA1986018720'
end;