Point
Contents
[
Hide
]
Point constructor (1 of 3)
Initializes a new instance of the Point
struct with the specified coordinates.
public Point(int x, int y)
Parameter | Type | Description |
---|---|---|
x | Int32 | The horizontal position of the point. |
y | Int32 | The vertical position of the point. |
See Also
- struct Point
- namespace System.Drawing
- assembly Aspose.Drawing
Point constructor (2 of 3)
Initializes a new instance of the Point
struct from a Size
.
public Point(Size sz)
Parameter | Type | Description |
---|---|---|
sz | Size | The size object. |
See Also
- struct Size
- struct Point
- namespace System.Drawing
- assembly Aspose.Drawing
Point constructor (3 of 3)
Initializes a new instance of the Point
struct using coordinates specified by an integer value.
public Point(int dw)
Parameter | Type | Description |
---|---|---|
dw | Int32 | The integer value. |
See Also
- struct Point
- namespace System.Drawing
- assembly Aspose.Drawing