LocationString Property

Type

String

 

Access

Get/Set

 

Description

The LocationString property provides access to a string that gives the location of this ProjectedPoint in the format specified by StringFormat.  Setting this property may change the coordinate values for this point.

 

Example

[VB6]

Sub ProjectedPoint_LocationString()

    Dim pt As New ProjectedPoint

    

    pt.StringFormat = pfoMGRS

    pt.LocationString = "18TWR2594617664"

End Sub

 

[Delphi 7]

procedure ProjectedPoint_LocationString();

var

  pt : ProjectedPoint;

begin

  pt := CoProjectedPoint.Create;

  pt.StringFormat := pfoMGRS;

  pt.LocationString := '18TWR2594617664';

end;