ImageGear .NET - Updated
PropertyChanged Event (ImGearARTMarkStatistics)




ImageGear24.Art Assembly > ImageGear.ART Namespace > ImGearARTMarkStatistics Class : PropertyChanged Event
Occurs when a property value changes.
Syntax
'Declaration
 
Public Event PropertyChanged As PropertyChangedEventHandler
'Usage
 
Dim instance As ImGearARTMarkStatistics
Dim handler As PropertyChangedEventHandler
 
AddHandler instance.PropertyChanged, handler
public event PropertyChangedEventHandler PropertyChanged
public: __event PropertyChangedEventHandler* PropertyChanged
public:
event PropertyChangedEventHandler^ PropertyChanged
Event Data

The event handler receives an argument of type PropertyChangedEventArgs containing data related to this event. The following PropertyChangedEventArgs properties provide information specific to this event.

PropertyDescription
 
Remarks
The PropertyChanged event can indicate all properties on the object have changed by using String.Empty as the property name.
See Also