String
Get/Set
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.
Sub ProjectedPoint_LocationString()
Dim pt As New ProjectedPoint
pt.StringFormat = pfoMGRS
pt.LocationString = "18TWR2594617664"
End Sub
procedure ProjectedPoint_LocationString();
var
pt : ProjectedPoint;
begin
pt := CoProjectedPoint.Create;
pt.StringFormat := pfoMGRS;
pt.LocationString := '18TWR2594617664';
end;