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 PropertyGridItemChangedEventArgs class.
Declaration
public PropertyGridItemChangedEventArgs(object oldItem, object newItem)
Parameters
System.Object
oldItem
The old item. |
System.Object
newItem
The new item. |
Properties
NewItem
Gets or sets the new item.
Declaration
public object NewItem { get; }
Property Value
System.Object
The new item. |
OldItem
Gets or sets the old item.
Declaration
public object OldItem { get; }
Property Value
System.Object
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.Boolean
|