Class PropertySetValueChangedEventArgs
Provides information about RadPropertyGrid's PropertySetValueChanged event.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.Data.PropertyGrid
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class PropertySetValueChangedEventArgs : EventArgs
Constructors
PropertySetValueChangedEventArgs(String, IEnumerable, Object)
Initializes a new instance of the PropertySetValueChangedEventArgs class.
Declaration
public PropertySetValueChangedEventArgs(string propertyName, IEnumerable items, object value)
Parameters
System.String
propertyName
The name of the property. |
System.Collections.IEnumerable
items
The items. |
System.Object
value
The value of the property. |
Properties
Items
Gets the items.
Declaration
public IEnumerable Items { get; }
Property Value
System.Collections.IEnumerable
The Items. |
PropertyName
Gets or sets the name of the property.
Declaration
public string PropertyName { get; set; }
Property Value
System.String
The name of the property. |
Value
Gets or sets the value of the property.
Declaration
public object Value { get; set; }
Property Value
System.Object
The value of the property. |