Create a rectangle, given a position and size.
Source position: types.pp line 523
function Bounds( |
ALeft: Integer; |
ATop: Integer; |
AWidth: Integer; |
AHeight: Integer |
):TRect; |
Bounds returns a TRect structure with the indicated position (Left=ALeft and Top=ATop) and size (Right=ALeft+AWidth and Bottom=ATop+AHeight)
|
Create a rectangle record. |
|
|
Check whether a point is inside a rectangle. |
|
|
Return the intersection of 2 rectangles. |
|
|
Return the union of 2 rectangles. |