AspNetEdit.UI.PropertyValueChangedEventArgs.PropertyValueChangedEventArgs C# (CSharp) Méthode

PropertyValueChangedEventArgs() public méthode

public PropertyValueChangedEventArgs ( GridRow changedItem, object oldValue, object newValue ) : System
changedItem GridRow
oldValue object
newValue object
Résultat System
        public PropertyValueChangedEventArgs(GridRow changedItem, object oldValue, object newValue)
        {
            this.changedItem = changedItem;
            this.oldValue = oldValue;
            this.newValue = newValue;
        }
PropertyValueChangedEventArgs