How to delete TInspectorBar->Panels

Hello,

how can I delete a single panel from a collection of TInspectorPanels?

I have an Inspectorbar with 3 Panels created at designtime and the other panels created at runtime but I don't know how to delete them (e.g. sth. like "InspectorBar1->Panels->Items[24]->Delete()" without effecting the design time panels.

Thx!

Regards
Horst Spierling

Correct way is:

InspectorBar1->Panels->Delete(PanelIndex);

Thx! this works.

Regards