Phone API Reference - UI Classes (Widgets) - Scroll - remove
remove
Description
Removes one or more widgets from a group.
Basic Example: Â
exampleObj.remove(widget[, widget...]); |
Parameters
Name | Required | Type | Default | Description |
---|---|---|---|---|
widget | Yes | widget | Â | Widget to act on. |
Examples
Remove widgets from a variety of objects.
window.remove(alertWidget);
group.remove(titleWidget);
scroll.remove(imgWidget1, imgWidget2); |