Get/Set
The East property provides access to the LinearValue that gives the East-coordinate of this ProjectedPoint. The East-coordinate gives the distance in the East/West extent from this point to the origin of the ProjectedCoordSys.
Private Sub GeoCalcNET_ProjectedPoint_East(ByVal pt As GeoCalcNET.ProjectedPoint)
Dim east As GeoCalcNET.LinearValue = pt.East
Dim lv As New GeoCalcNET.LinearValue
lv.InMeters = 75
pt.East = lv
End Sub
private void GeoCalcNET_ProjectedPoint_East(GeoCalcNET.ProjectedPoint pt)
{
GeoCalcNET.LinearValue lv = pt.East;
GeoCalcNET.LinearValue east = new GeoCalcNET.LinearValue();
east.InMeters = 2750;
pt.East = east;
}