RectanglePropertyBottom

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
the bottom of <mRect>
Associationscom.livecode.canvas
Summary

The bottom edge of a rectangle value.

Parameters
NameTypeDescription
mRect

An expression which evaluates to a rectangle.

Example
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)
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.

Tagscanvas