LocationString Property

Type

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

[VB6]

Sub GeodeticPoint_LocationString()

    Dim pt As New GeodeticPoint

    pt.StringFormat = gfoGeoref

    pt.LocationString = "HKAA1986018720"

End Sub

 

[Delphi 7]

procedure GeodeticPoint_LocationString();

var

  pt : GeodeticPoint;

begin

  pt := CoGeodeticPoint.Create;

  pt.StringFormat := gfoGeoref;

  pt.LocationString := 'HKAA1986018720'

end;