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

[To be supplied.]

Overload List

Create a new Point object at the given location.

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

Create a new Point object given an existing Size object.

[Visual Basic] Overloads Public Sub New(Size)
[C#] public Point(Size);
[C++] public: Point(Size);
[JScript] public function Point(Size);

Create a new point object given the coordinates crammed into a 32bit integer. The low order 16bits are the horizontal [x] coordinate and the higher 16bits are the vertical [Y] coordinate.

[Visual Basic] Overloads Public Sub New(Integer)
[C#] public Point(int);
[C++] public: Point(int);
[JScript] public function Point(int);

See Also

Point Structure | Point Members | System.Drawing Namespace