Interface IAttributePropertyChange
The public interface for AttributePropertyChange
[DefaultImplementationType(typeof(AttributePropertyChange))]
[XmlDefaultImplementationType(typeof(AttributePropertyChange))]
[ModelRepresentationClass("http://nmf.codeplex.com/changes#//AttributePropertyChange")]
public interface IAttributePropertyChange : IAttributeChange, IElementaryChange, IModelChange, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
- Inherited Members
- Extension Methods
Properties
NewValue
The newValue property
[XmlElementName("newValue")]
[XmlAttribute(true)]
string NewValue { get; set; }
Property Value
OldValue
The oldValue property
[XmlElementName("oldValue")]
[XmlAttribute(true)]
string OldValue { get; set; }
Property Value
Events
NewValueChanged
Gets fired when the NewValue property changed its value
event EventHandler<ValueChangedEventArgs> NewValueChanged
Event Type
NewValueChanging
Gets fired before the NewValue property changes its value
event EventHandler<ValueChangedEventArgs> NewValueChanging
Event Type
OldValueChanged
Gets fired when the OldValue property changed its value
event EventHandler<ValueChangedEventArgs> OldValueChanged
Event Type
OldValueChanging
Gets fired before the OldValue property changes its value
event EventHandler<ValueChangedEventArgs> OldValueChanging