GeoCalcCOM.ProjectedPointFormatOption
Get/Set
The StringFormat property specifies the format of the string used with the LocationString property, according to the ProjectedPointFormatOption enumeration.
Sub ProjectedPoint_StringFormat()
Dim pt As New ProjectedPoint
pt.StringFormat = pfoMGRS
pt.LocationString = "18TWR2594617664"
End Sub
procedure ProjectedPoint_StringFormat();
var
pt : ProjectedPoint;
begin
pt := CoProjectedPoint.Create;
pt.StringFormat := pfoMGRS;
pt.LocationString := '18TWR2594617664';
end;