Gets the name of the property that changed.
Namespace: MindFusion.Common
File: Events.js
JavaScript Copy Code |
---|
get propertyName() {} |
Type: String
String. The name of the property.
The following code handles the propertyValueChanged event for a Calendar instance, which uses data of type PropertyEventArgs.
JavaScript Copy Code |
---|
calendar.propertyValueChanged.addEventListener(handlePropertyChanged); function handlePropertyChanged (sender, args ) |