AnimatGuiCtrls.Controls.PropertyTable.this C# (CSharp) Method

this() public method

Gets or sets the value of the property with the specified name.

In C#, this property is the indexer of the PropertyTable class.

public this ( string key ) : object
key string
return object
        public object this[string key]
        {
            get { return propValues[key]; }
            set { propValues[key] = value; }
        }