RectanglePropertyBottom
Type
operator
Summary
The bottom edge of a rectangle value.
Syntax
the bottom of <mRect>
Description
The location along the y-axis of the bottom edge of the rectangle.
note
Setting the bottom of a rectangle will reposition it without altering the width or height.
Parameters
Name | Type | Description |
---|---|---|
mRect | An expression which evaluates to a rectangle. |
Examples
variable tRect
put rectangle [50,100,150,200] into tRect
// Store the bottom edge of the rectangle in a variable
variable tBottom
put the bottom of tRect into tBottom
// Move the rectangle vertically to a new position.
set the bottom of tRect to (tBottom + 10)