UITestAction.PropertyChanged Event

 

Occurs when a property value changes.

Namespace:   Microsoft.VisualStudio.TestTools.UITest.Common
Assembly:  Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)

Syntax

public event PropertyChangedEventHandler PropertyChanged
public:
event PropertyChangedEventHandler^ PropertyChanged {
    virtual void add(PropertyChangedEventHandler^ value) sealed;
    virtual void remove(PropertyChangedEventHandler^ value) sealed;
}
abstract PropertyChanged : IEvent<PropertyChangedEventHandler,
    PropertyChangedEventArgs>
override PropertyChanged : IEvent<PropertyChangedEventHandler,
    PropertyChangedEventArgs>
Public Event PropertyChanged As PropertyChangedEventHandler

Implements

INotifyPropertyChanged.PropertyChanged

Remarks

To raise this event, the set procedure of a property should call the NotifyPropertyChanged method. Not all properties cause this event to be raised when their value is changed.

See Also

NotifyPropertyChanged
UITestAction Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace

Return to top