ArcObjects Library Reference (DefenseSolutions)  

ICoordinate.PutCoords Method

The coordinate as x, y.

[Visual Basic .NET]
Public Sub PutCoords ( _
    ByVal x As Double, _
    ByVal y As Double _
)
[C#]
public void PutCoords (
    double x,
    double y
);
[C++]
HRESULT PutCoords(
  double x,
  double y
);
[C++]

Parameters

x [in]   x is a parameter of type double y [in]   y is a parameter of type double

Product Availability

Available with ArcGIS Engine and ArcGIS Desktop.

Description

A convenience method to set or get the coordinates x and y values. Using it saves you from creating a Point object. Otherwise it is identical to the Point property.

See Also

ICoordinate Interface