AspNetEdit.UI.PropertyGrid.OnPropertyValueChanged C# (CSharp) Méthode

OnPropertyValueChanged() public méthode

public OnPropertyValueChanged ( GridRow changedItem, object oldValue, object newValue ) : void
changedItem GridRow
oldValue object
newValue object
Résultat void
        public void OnPropertyValueChanged(GridRow changedItem, object oldValue, object newValue)
        {
            if (PropertyValueChanged != null)
            PropertyValueChanged (this, new PropertyValueChangedEventArgs (changedItem, oldValue, newValue));
        }