AnimatGuiCtrls.Controls.PropertySpecEventArgs.PropertySpecEventArgs C# (CSharp) Метод

PropertySpecEventArgs() публичный Метод

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.
Результат System
        public PropertySpecEventArgs(PropertySpec property, object val)
        {
            this.property = property;
            this.val = val;
        }
PropertySpecEventArgs