Class ElementPropertyChangedEventArgs
Provides data for events that occur when an element's property changes.
Inheritance
System.Object
ElementPropertyChangedEventArgs
Namespace: Telerik.Maui.Controls.Compatibility.Common
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public class ElementPropertyChangedEventArgs : EventArgs
Constructors
ElementPropertyChangedEventArgs(Object, String)
Initializes a new instance of the ElementPropertyChangedEventArgs class.
Declaration
public ElementPropertyChangedEventArgs(object element, string propertyName)
Parameters
System.Object
element
The element whose property changed. |
System.String
propertyName
The name of the property that changed. |
Properties
Element
Gets or sets the element whose property changed.
Declaration
public object Element { get; set; }
Property Value
System.Object
The element object. |
PropertyName
Gets or sets the name of the property that changed.
Declaration
public string PropertyName { get; set; }
Property Value
System.String
The property name. |