ComponentFactory.Krypton.Docking.DockingElementClosedCollection.InternalClear C# (CSharp) Method

InternalClear() protected method

Remove all docking elements from the collection.
protected InternalClear ( ) : void
return void
        protected virtual void InternalClear()
        {
            // Remove the parent relationships
            foreach (IDockingElement element in this)
                element.Parent = null;

            _elements.Clear();
        }