Rectangle Constructor (Int32, Int32, UInt32, UInt32) | 
 
                Initializes a new instance of the 
Rectangle class with the specified parameters.
            
 
    Namespace: 
   DotNetBrowser.Geometry
    Assembly:
   DotNetBrowser (in DotNetBrowser.dll) Version: 2.19.0
Syntaxpublic Rectangle(
	int x,
	int y,
	uint width,
	uint height
)
Parameters
- x
 - Type: SystemInt32
The top-left corner X coordinate of the rectangle. - y
 - Type: SystemInt32
The top-left corner Y coordinate of the rectangle. - width
 - Type: SystemUInt32
The rectangle width. - height
 - Type: SystemUInt32
The rectangle height. 
See Also