Table of Contents

Interface ICompositionPropertyChange

Namespace
NMF.Models.Changes
Assembly
NMF.Models.dll

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

IModelElement

OldValue

The oldValue property

[XmlElementName("oldValue")]
[XmlAttribute(true)]
IModelElement OldValue { get; set; }

Property Value

IModelElement

Events

NewValueChanged

Gets fired when the NewValue property changed its value

event EventHandler<ValueChangedEventArgs> NewValueChanged

Event Type

EventHandler<ValueChangedEventArgs>

NewValueChanging

Gets fired before the NewValue property changes its value

event EventHandler<ValueChangedEventArgs> NewValueChanging

Event Type

EventHandler<ValueChangedEventArgs>

OldValueChanged

Gets fired when the OldValue property changed its value

event EventHandler<ValueChangedEventArgs> OldValueChanged

Event Type

EventHandler<ValueChangedEventArgs>

OldValueChanging

Gets fired before the OldValue property changes its value

event EventHandler<ValueChangedEventArgs> OldValueChanging

Event Type

EventHandler<ValueChangedEventArgs>