SourceGrid.ControlsRepository.this C# (CSharp) Method

this() public method

Gets or sets the Control associated with the given Guid
public this ( System.Guid key ) : Control
key System.Guid /// The Guid whose value to get or set. ///
return System.Windows.Forms.Control
        public virtual Control this[Guid key]
        {
            get
            {
                return (Control) this.Dictionary[key];
            }
            /*			set
            {
                this.Dictionary[key] = value;
            }*/
        }