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

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 EventArgs.Empty

Constructors

Initializes a new instance of the ListLevelPropertyChangeEventArgs class.

C#
public ListLevelPropertyChangeEventArgs(string propertyName, object oldValue, object newValue)
Parameters:propertyNamestring

The name of the property that has changed.

oldValueobject

The value of the property before the change occurred.

newValueobject

The 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; }
Property Value:

A string that specifies the name of the property that has changed.