 "removeItems"
"removeItems"
    
    Deletes the specified items.
Synopsis
shape.removeItems(dyn_string Ids);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| ids | The ids of the items. | 
Description
Deletes the specified items.
 Example
Example
Deletes the specified items from a tree widget.
main()
{
  dyn_string ids;
  ids = makeDynString("PART1", "PART2", "PART3");
  TREE1.removeItems(ids);
}Assignment
Tree widget
