ComponentFactory.Krypton.Docking.KryptonDockingControl.DebugOutput C# (CSharp) Method

DebugOutput() private method

private DebugOutput ( string title ) : void
title string
return void
        private void DebugOutput(string title)
        {
            Console.WriteLine("\n{0}", title);
            foreach (Control c in Control.Controls)
                Console.WriteLine("    {0} {1} {2} {3}", c.GetType().Name, c.Visible, c.Size, c.Dock);
        }