StringFormat Property

Type

GeoCalcCOM.GeodeticPointFormatOption

 

Access

Get/Set

 

Description

The StringFormat property specifies the format of the string used with the LocationString property, according to the GeodeticPointFormatOption enumeration.

 

Example

[VB6]

Sub GeodeticPoint_StringFormat()

    Dim pt As New GeodeticPoint

    pt.StringFormat = gfoGeoref

    pt.LocationString = "HKAA1986018720"

End Sub

 

[Delphi 7]

procedure GeodeticPoint_StringFormat();

var

  pt : GeodeticPoint;

begin

  pt := CoGeodeticPoint.Create;

  pt.StringFormat := gfoGeoref;

  pt.LocationString := 'HKAA1986018720'

end;