Interface IMetaElement
The public interface for MetaElement
Inherited Members
Namespace: NMF.Models.Meta
Assembly: NMF.Models.dll
Syntax
[DefaultImplementationType(typeof(MetaElement))]
[XmlDefaultImplementationType(typeof(MetaElement))]
[ModelRepresentationClass("http://nmf.codeplex.com/nmeta/#//MetaElement")]
public interface IMetaElement : IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Properties
| Edit this page View SourceName
The Name property
Declaration
[Id]
[XmlAttribute(true)]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Remarks
The Remarks property
Declaration
[XmlAttribute(true)]
string Remarks { get; set; }
Property Value
Type | Description |
---|---|
string |
Summary
The Summary property
Declaration
[XmlAttribute(true)]
string Summary { get; set; }
Property Value
Type | Description |
---|---|
string |
Events
| Edit this page View SourceNameChanged
Gets fired when the Name property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> NameChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
NameChanging
Gets fired before the Name property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> NameChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
RemarksChanged
Gets fired when the Remarks property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> RemarksChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
RemarksChanging
Gets fired before the Remarks property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> RemarksChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
SummaryChanged
Gets fired when the Summary property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> SummaryChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
SummaryChanging
Gets fired before the Summary property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> SummaryChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |