int RectEqual (Rect rect1, Rect rect2);
Returns 1 if the top, left, height, and width of the two rectangles you specify are identical. Returns 0 otherwise.
| Input | ||
| Name | Type | Description |
| rect1 | Rect | The location and size of a rectangle. |
| rect2 | Rect | The location and size of a rectangle. |
| Name | Type | Description | ||||||
| equal | integer | Indicates if the top, left, height, and width values in rect1
are identical to those of rect2.
|