New to Telerik UI for WPFStart a free 30-day trial

Provides information about RadPropertyGrid's PropertySetValueChanged event.

Definition

Namespace:Telerik.Windows.Controls.Data.PropertyGrid

Assembly:Telerik.Windows.Controls.Data.dll

Syntax:

C#
public class PropertySetValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsPropertySetValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the PropertySetValueChangedEventArgs class.

C#
public PropertySetValueChangedEventArgs(string propertyName, IEnumerable items, object value)
Parameters:propertyNamestring

The name of the property.

itemsIEnumerable

The items.

valueobject

The value of the property.

Properties

Gets the items.

C#
public IEnumerable Items { get; }
Property Value:

The Items.

Gets or sets the name of the property.

C#
public string PropertyName { get; set; }
Property Value:

The name of the property.

Gets or sets the value of the property.

C#
public object Value { get; set; }
Property Value:

The value of the property.