SourceGrid.ControlsRepository.Remove C# (CSharp) Method

Remove() public method

Removes the element with the specified key from this ControlsRepository.
public Remove ( System.Guid key ) : void
key System.Guid /// The Guid key of the element to remove. ///
return void
        public virtual void Remove(Guid key)
        {
            if (ContainsKey(key))
            {
                m_ParentControl.Controls.Remove(this[key]);
                this.Dictionary.Remove(key);
            }
        }