Sets the x and y coordinates of the Point.

Namespace:  ESRI.ArcGISExplorer.Geometry

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public void SetCoordinates(
	double x,
	double y
)
Visual Basic (Declaration)
Public Sub SetCoordinates ( _
	x As Double, _
	y As Double _
)

Parameters

x
Type: System..::.Double

A double which will set the X property.
y
Type: System..::.Double

A double which will set the Y property.

Remarks

Use this method to more efficiently set multiple properties of the point in one method call.

See Also