NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Point Constructor (Int32, Int32)

Create a new Point object at the given location.

[Visual Basic]
Overloads Public Sub New( _
   ByVal x As Integer, _
   ByVal y As Integer _
)
[C#]
public Point(
   int x,
   int y
);
[C++]
public: Point(
   int x,
   int y
);
[JScript]
public function Point(
   x : int,
   y : int
);

Parameters

x
Horizontal poisiton of the point.
y
Vertical position of the point.

See Also

Point Structure | Point Members | System.Drawing Namespace | Point Constructor Overload List