Class ValueChangedEventArgs
Represents the ValuechangedEventArgs class
Inheritance
System.Object
ValueChangedEventArgs
Namespace: Syncfusion.Windows.PropertyGrid
Assembly: Syncfusion.PropertyGrid.Wpf.dll
Syntax
public class ValueChangedEventArgs : EventArgs
Constructors
ValueChangedEventArgs(Property)
Represents the ValueChangedEventArgs constructor
Declaration
public ValueChangedEventArgs(Property item)
Parameters
Type | Name | Description |
---|---|---|
Property | item |
ValueChangedEventArgs(Property, Object, Object)
Represents ValueChangedEventrgs
Declaration
public ValueChangedEventArgs(Property item, object newValue, object oldValue)
Parameters
Type | Name | Description |
---|---|---|
Property | item | |
System.Object | newValue | |
System.Object | oldValue |
ValueChangedEventArgs(Property, Object, Object, PropertyItem)
Represents ValueChangedEventrgs
Declaration
public ValueChangedEventArgs(Property item, object newValue, object oldValue, PropertyItem propertyItem)
Parameters
Type | Name | Description |
---|---|---|
Property | item | |
System.Object | newValue | |
System.Object | oldValue | |
PropertyItem | propertyItem |
Properties
NewValue
Get the NewValue for the PropertyGrid
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
OldValue
Get and set the oldValue for the PropertyGrid
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |
Property
Get and set the Property
Declaration
public Property Property { get; set; }
Property Value
Type |
---|
Property |
PropertyItem
Get and set the PropertyItem
Declaration
public PropertyItem PropertyItem { get; }
Property Value
Type |
---|
PropertyItem |