UnplaceWidget
Type
statement
Summary
Remove a child widget from the parent.
Syntax
unplace <mWidget>
Description
Unplaces the child widget from the widget in which the unplace statement is used. The widget is no longer drawn.
Parameters
Name | Type | Description |
---|---|---|
mWidget | The child widget object. |
Examples
-- 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