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)

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( _
   ByVal dw As Integer _
)
[C#]
public Point(
   int dw
);
[C++]
public: Point(
   int dw
);
[JScript]
public function Point(
   dw : int
);

Parameters

dw
Integer with the two coordinate values in it

See Also

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