Class PropertyGridItemChangedEventArgs
Provides information about RadPropertyGrid's ItemChanged event.
Inheritance
Namespace: Telerik.Windows.Controls.Data.PropertyGrid
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class PropertyGridItemChangedEventArgs : EventArgs
Constructors
PropertyGridItemChangedEventArgs(Object, Object)
Initializes a new instance of the Property
Declaration
public PropertyGridItemChangedEventArgs(object oldItem, object newItem)
Parameters
System. The old item. |
System. The new item. |
Properties
NewItem
Gets or sets the new item.
Declaration
public object NewItem { get; }
Property Value
System. The new item. |
OldItem
Gets or sets the old item.
Declaration
public object OldItem { get; }
Property Value
System. The old item. |
ShouldUpdateContent
Gets or sets a value that indicates whether the change of the item should force update on the list of property definitions.
Declaration
public bool ShouldUpdateContent { get; set; }
Property Value
System.
|