Back

ComponentCount:

ComponentCount indicates the number of components owned by the component.

Example:
This example came from Greg Liefs "CREATING A DUPLICATE OF AN EXISTING FORM".

for x := 0 to ComponentCount - 1 do begin
        c := f.FindComponent(Components[x].Name) ;


Back