[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Remove a component from the list, possibly destroying it.
Source position: contnrs.pp line 108
public function TComponentList.Remove( |
AComponent: TComponent |
):Integer; |
AComponent |
|
Component to remove from the list |
The index of the removed instance
Remove removes item from the list, and if the list owns it's items, it also destroys it. It returns the index of the item that was removed, or -1 if no item was removed.
Remove simply overrides the implementation in TObjectList so it only accepts TComponent descendents. It introduces no new behaviour.
None.
|
Remove a component from the list without destroying it. |
|
|
Remove (and possibly free) an element from the list. |