I want to iterate over all of the panels on a form and determine whether they are visible. I have figureddocking out how to do this for docked panels: For Apanel := 0 to MainForm.LMDDockSite1.PanelCount - 1 Do
begin
If Not MainForm.LMDDockSite1.Panels[Apanel].PanelVisible Then
begin
But where are the floating panels stored and how do I test whether they are visible?
Comments