PlaceWidgetAt

Typestatement
DictionaryLCB
LibraryLiveCode Builder
Syntax
place <mWidget> at ( bottom | top )
Associationscom.livecode.widget
Summary

Add a child widget to the parent on the top or bottom layer

Parameters
NameTypeDescription
mWidget

The child widget object.

Example
variable tNavbar as Widget
put a new widget "com.livecode.widget.navbar" into tNavbar
place tNavbar at top
Description

Adds a the specified child object to the widget in which the place statement is used. Using the "top" (resp. "bottom") variant will cause mWidget to be placed on the layer above (resp. below) all previously placed widgets.

Tagswidget