AnimatGuiCtrls.Controls.PropertySpecEventArgs.PropertySpecEventArgs C# (CSharp) Method

PropertySpecEventArgs() public method

Initializes a new instance of the PropertySpecEventArgs class.
public PropertySpecEventArgs ( PropertySpec property, object val ) : System
property PropertySpec The PropertySpec that represents the property whose /// value is being requested or set.
val object The current value of the property.
return System
        public PropertySpecEventArgs(PropertySpec property, object val)
        {
            this.property = property;
            this.val = val;
        }
PropertySpecEventArgs