Point Constructor (Int32, Int32) |
Initializes a new instance of a Point class with specified x and y values
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Point(
int x,
int y
)
Public Sub New (
x As Integer,
y As Integer
)
new :
x : int *
y : int -> Point
Parameters
- x
- Type: SystemInt32
Initial X value for the point - y
- Type: SystemInt32
Initial Y value for the point
See Also