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

OnGetValue() protected method

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