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

OnGetValue() protected method

This member overrides PropertyBag.OnGetValue.
protected OnGetValue ( PropertySpecEventArgs e ) : void
e PropertySpecEventArgs
return void
        protected override void OnGetValue(PropertySpecEventArgs e)
        {
            e.Value = propValues[e.Property.Name];
            //			if(e.Value == null)
            //				throw new System.Exception("No value with the specified property name exists. PropertyName: " + e.Property.Name);

            base.OnGetValue(e);
        }