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

InternalAdd() protected method

Append a docking element to the collection.
protected InternalAdd ( IDockingElement item ) : void
item IDockingElement IDockingElement reference.
return void
        protected virtual void InternalAdd(IDockingElement item)
        {
            // Hook up the parent relationship, it is the responsability of the 'item'
            // to check that its name does not already exist in our collection.
            item.Parent = this;

            _elements.Add(item);
        }