Suggestion for new Container Control

Hello,

Adding a container control which can be easily repeated with all its contents (controls placed within it).

And a way to easily access each repeated item like accessing an array. For example:
LastItem = RepeaterContainer1.AddNew;
RepeaterContainer1[LastItem].Button1.Caption := 'testing value';

RepeaterContainer1.Delete[LastItem];
RepeaterContainer1.Count;

and so on...

Regards,

Yogesh