Interface ICompositionPropertyChange
The public interface for CompositionPropertyChange
Inherited Members
Namespace: NMF.Models.Changes
Assembly: NMF.Models.dll
Syntax
[DefaultImplementationType(typeof(CompositionPropertyChange))]
[XmlDefaultImplementationType(typeof(CompositionPropertyChange))]
[ModelRepresentationClass("http://nmf.codeplex.com/changes#//CompositionPropertyChange")]
public interface ICompositionPropertyChange : ICompositionChange, IElementaryChange, IModelChange, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Properties
| Edit this page View SourceNewValue
The newValue property
Declaration
[Browsable(false)]
[XmlElementName("newValue")]
[XmlAttribute(false)]
[Containment]
IModelElement NewValue { get; set; }
Property Value
Type | Description |
---|---|
IModelElement |
OldValue
The oldValue property
Declaration
[XmlElementName("oldValue")]
[XmlAttribute(true)]
IModelElement OldValue { get; set; }
Property Value
Type | Description |
---|---|
IModelElement |
Events
| Edit this page View SourceNewValueChanged
Gets fired when the NewValue property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> NewValueChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
NewValueChanging
Gets fired before the NewValue property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> NewValueChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
OldValueChanged
Gets fired when the OldValue property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> OldValueChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
OldValueChanging
Gets fired before the OldValue property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> OldValueChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |