UnplaceWidget

Typestatement
DictionaryLCB
LibraryLiveCode Builder
Syntax
unplace <mWidget>
Associationscom.livecode.widget
Summary

Remove a child widget from the parent.

Parameters
NameTypeDescription
mWidget

The child widget object.

Example
-- Remove any child widgets that are clicked on
public handler OnMouseUp() returns nothing
    if the target is not nothing then
        unplace the target
    end if
end handler
Description

Unplaces the child widget from the widget in which the unplace statement is used. The widget is no longer drawn.

Tagswidget