Initializes a new instance of the PointD class with the specified coordinates.

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Sub New ( _
	x As Double, _
	y As Double _
)
C#
public PointD(
	double x,
	double y
)
Visual C++
public:
PointD(
	double x, 
	double y
)
JavaScript
EGIS.ShapeFileLib.PointD = function(x, y);

Parameters

x
Type: System..::..Double
The horizontal position of the point.
y
Type: System..::..Double
The vertical position of the point.

See Also