Class
ListLevelPropertyChangeEventArgs

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:

cs-api-definition
public class ListLevelPropertyChangeEventArgs : EventArgs

Inheritance: objectEventArgsListLevelPropertyChangeEventArgs

Inherited Members EventArgs.Empty

Constructors

ListLevelPropertyChangeEventArgs(string, object, object)

Initializes a new instance of the ListLevelPropertyChangeEventArgs class.

Declaration

cs-api-definition
public ListLevelPropertyChangeEventArgs(string propertyName, object oldValue, object newValue)

Parameters

propertyName

string

The name of the property that has changed.

oldValue

object

The value of the property before the change occurred.

newValue

object

The value of the property after the change occurred.

Properties

NewValue

Gets the new value of the list level property that has changed.

Declaration

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

Property Value

object

OldValue

Gets the old value of the list level property before the change occurred.

Declaration

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

Property Value

object

PropertyName

Represents the property name associated with a change event in a list level.

Declaration

cs-api-definition
public string PropertyName { get; set; }

Property Value

string

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