Class
PropertyGridItemChangedEventArgs

Provides information about RadPropertyGrid's ItemChanged event.

Definition

Namespace:Telerik.Windows.Controls.Data.PropertyGrid

Assembly:Telerik.Windows.Controls.Data.dll

Syntax:

cs-api-definition
public class PropertyGridItemChangedEventArgs : EventArgs

Inheritance: objectEventArgsPropertyGridItemChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

PropertyGridItemChangedEventArgs(object, object)

Initializes a new instance of the PropertyGridItemChangedEventArgs class.

Declaration

cs-api-definition
public PropertyGridItemChangedEventArgs(object oldItem, object newItem)

Parameters

oldItem

object

The old item.

newItem

object

The new item.

Properties

NewItem

Gets or sets the new item.

Declaration

cs-api-definition
public object NewItem { get; }

Property Value

object

The new item.

OldItem

Gets or sets the old item.

Declaration

cs-api-definition
public object OldItem { get; }

Property Value

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

cs-api-definition
public bool ShouldUpdateContent { get; set; }

Property Value

bool