8.7 released—WinterCG Compliance Part 1
Learn more
PropertyChangeData
interface PropertyChangeData extends EventData {
  oldValue: any;
  propertyName: string;
  value: any;
}
Data for the "propertyChange" event.

Summary

Properties

oldValue
propertyName
value
2 properties inherited from EventData
Click to expand

Properties

oldValue

oldValue?: any
The previous value of the property.

propertyName

propertyName: string
The name of the property that has changed.

value

value: any
The new value of the property.
Previous
PromptResult