int RectBottom (Rect rect);
Returns the y-coordinate of the bottom edge a rectangle. The bottom edge is not enclosed by the rectangle.
The bottom is is computed as follows:
bottom = rect.top + rect.height
Input | ||
Name | Type | Description |
rect | Rect | The location and size of a rectangle. |
Name | Type | Description |
bottom | integer | Y-coordinate of the bottom of the rectangle. The bottom is not enclosed by the rectangle and is equal to rect.top + rect.height. |