TComponent.DestroyComponents

Destroy child components.

Declaration

Source position: classesh.inc line 2117

public 
  procedure DestroyComponents;

Description

DestroyComponents calls the destructor of all owned components, till no more components are left in the Components array.

Calling the destructor of an owned component has as the effect that the component will remove itself from the list of owned components, if nothing has disrupted the sequence of destructors.

Errors

If an overridden 'destroy' method does not call it's inherited destructor or raises an exception, it's TComponent.Destroy destructor will not be called, which may result in an endless loop.

See also

Name Description
Components Indexed list (zero-based) of all owned components.
Destroy Destroys the instance of the component.