Gets the x, y and z 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 GetCoordinates(
	out double x,
	out double y,
	out double z
)
Visual Basic (Declaration)
Public Sub GetCoordinates ( _
	<OutAttribute> ByRef x As Double, _
	<OutAttribute> ByRef y As Double, _
	<OutAttribute> ByRef z As Double _
)

Parameters

x
Type: System..::.Double %

A double with the value of the Point.X property.
y
Type: System..::.Double %

A double with the value of the Point.Y property.
z
Type: System..::.Double %

A double with the value of the Point.Z property.

Remarks

Use this method if you want to populate existing variables with the values of the X, Y and Z properties of the Point.

See Also