Represents the event arguments for the change of a property in a list level.
Definition
Namespace:Telerik.Windows.Documents.Lists
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
C#
public class ListLevelPropertyChangeEventArgs : EventArgs
Inheritance: objectEventArgsListLevelPropertyChangeEventArgs
Inherited Members
Constructors
Initializes a new instance of the ListLevelPropertyChangeEventArgs class.
C#
public ListLevelPropertyChangeEventArgs(string propertyName, object oldValue, object newValue)
The name of the property that has changed.
oldValueobjectThe value of the property before the change occurred.
newValueobjectThe value of the property after the change occurred.
Properties
Gets the new value of the list level property that has changed.
C#
public object NewValue { get; }
Gets the old value of the list level property before the change occurred.
C#
public object OldValue { get; }
Represents the property name associated with a change event in a list level.
C#
public string PropertyName { get; set; }
A string that specifies the name of the property that has changed.