AnimatGuiCtrls.Controls.PropertyBag.OnSetValue C# (CSharp) Method

OnSetValue() protected method

Raises the SetValue event.
protected OnSetValue ( PropertySpecEventArgs e ) : void
e PropertySpecEventArgs A PropertySpecEventArgs that contains the event data.
return void
        protected virtual void OnSetValue(PropertySpecEventArgs e)
        {
            if(SetValue != null)
                SetValue(this, e);
        }