Point.Point

Point(int, int)

Initializes a new instance of the Point structure with the specified coordinates.

public Point(int x, int y)
ParameterTypeDescription
xInt32The horizontal position of the point.
yInt32The vertical position of the point.

See Also


Point(Size)

Initializes a new instance of the Point structure from the Size structure.

public Point(Size size)
ParameterTypeDescription
sizeSizeContains the new point coordinates.

See Also


Point(int)

Initializes a new instance of the Point structure using coordinates specified by an integer value.

public Point(int dw)
ParameterTypeDescription
dwInt32A 32-bit integer that specifies the coordinates for the new point.

See Also