GeoCalcCOM.GeodeticPointFormatOption
Get/Set
The StringFormat property specifies the format of the string used with the LocationString property, according to the GeodeticPointFormatOption enumeration.
Sub GeodeticPoint_StringFormat()
Dim pt As New GeodeticPoint
pt.StringFormat = gfoGeoref
pt.LocationString = "HKAA1986018720"
End Sub
procedure GeodeticPoint_StringFormat();
var
pt : GeodeticPoint;
begin
pt := CoGeodeticPoint.Create;
pt.StringFormat := gfoGeoref;
pt.LocationString := 'HKAA1986018720'
end;