Classes.TComponent.Components
From RAD Studio VCL Reference
Contents |
Delphi Information
From Classes.pas
property Components: TComponent read GetComponent;
Unit: Classes
Type: property
Visibility: public
Member Of: TComponent
C++ Information
From Classes.hpp
__property Classes::TComponent * Components = {read=GetComponent};
Unit: Classes
Type: property
Visibility: public
Member Of: TComponent
Description
Lists all components owned by the component.
Use Components to access any of the components owned by this component, such as the components owned by a form. The Components property is most useful when referring to owned components by number rather than name. It is also used internally for iterative processing of all owned components.
Index ranges from 0 to ComponentIndex minus 1.
See Also
Code Samples
- ComponentCountProperty (Delphi)
- OnActivate (Delphi)
- OnActivate2 (Delphi)
- ComponentCount (C++)
- OnActivate (C++)
- OnActivate2 (C++)