Point.Point

Point(int, int)

Initializes a new instance of the Point struct 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 struct from a Size .

public Point(Size sz)
ParameterTypeDescription
szSizeThe size object.

See Also


Point(int)

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

public Point(int dw)
ParameterTypeDescription
dwInt32The integer value.

See Also