 | RectangleI Constructor (Int32, Int32, Int32, Int32) |
Constructs a new rectangle with the specified position and size.
Namespace: Slash.Math.Geometry.RectanglesAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic RectangleI(
int x,
int y,
int width,
int height
)
Public Sub New (
x As Integer,
y As Integer,
width As Integer,
height As Integer
)
public:
RectangleI(
int x,
int y,
int width,
int height
)
new :
x : int *
y : int *
width : int *
height : int -> RectangleI
Parameters
- x
- Type: System.Int32
X-component of the rectangle position.
- y
- Type: System.Int32
Y-component of the rectangle position.
- width
- Type: System.Int32
Rectangle width.
- height
- Type: System.Int32
Rectangle height.
See Also