Interface ICompositionPropertyChange
The public interface for CompositionPropertyChange
[DefaultImplementationType(typeof(CompositionPropertyChange))]
[XmlDefaultImplementationType(typeof(CompositionPropertyChange))]
[ModelRepresentationClass("http://nmf.codeplex.com/changes#//CompositionPropertyChange")]
public interface ICompositionPropertyChange : ICompositionChange, IElementaryChange, IModelChange, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
- Inherited Members
- Extension Methods
Properties
NewValue
The newValue property
[Browsable(false)]
[XmlElementName("newValue")]
[XmlAttribute(false)]
[Containment]
IModelElement NewValue { get; set; }
Property Value
OldValue
The oldValue property
[XmlElementName("oldValue")]
[XmlAttribute(true)]
IModelElement 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