Class
PropertyEventArgs<T>

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Type Parameters:

T

Syntax:

cs-api-definition
public class PropertyEventArgs<T> : PropertyEventArgs

Inheritance: objectEventArgsPropertyEventArgsPropertyEventArgs<T>

Inherited Members PropertyEventArgs.PropertyNameEventArgs.Empty

Constructors

PropertyEventArgs(string, T, T)

Initializes a new instance of the PropertyEventArgs class.

Declaration

cs-api-definition
public PropertyEventArgs(string propertyName, T oldValue, T newValue)

Parameters

propertyName

string

Name of the property.

oldValue

T

The old value.

newValue

T

The new value.

Properties

NewValue

Gets or sets the new value.

Declaration

cs-api-definition
public T NewValue { get; set; }

Property Value

T

The new value.

OldValue

Gets or sets the old value.

Declaration

cs-api-definition
public T OldValue { get; set; }

Property Value

T

The old value.