WidgetRectangleProperty
Type
operator
Summary
Manipulates the rectangle property of a child widget
Syntax
the rectangle of <mWidget>
Description
Use the rectangle property to set the rectangle of a child widget.
Parameters
Name | Type | Description |
---|---|---|
mWidget | The child widget object |
Examples
private variable mChild as Widget
public handler OnCreate() returns nothing
put a new widget "com.livecode.widget.button" into mChild
place mChild
end handler
public handler OnGeometryChanged() returns nothing
-- ensure child widget rect is that of the parent
set the rectangle of mChild to my bounds
end handler