StringFormat Property

Type

GeoCalcCOM.ProjectedPointFormatOption

 

Access

Get/Set

 

Description

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

 

Example

[VB6]

Sub ProjectedPoint_StringFormat()

    Dim pt As New ProjectedPoint

    

    pt.StringFormat = pfoMGRS

    pt.LocationString = "18TWR2594617664"

End Sub

 

[Delphi 7]

procedure ProjectedPoint_StringFormat();

var

  pt : ProjectedPoint;

begin

  pt := CoProjectedPoint.Create;

  pt.StringFormat := pfoMGRS;

  pt.LocationString := '18TWR2594617664';

end;