Table of Contents

Interface ILiteral

Namespace
NMF.Models.Meta
Assembly
NMF.Models.dll

The public interface for Literal

[DefaultImplementationType(typeof(Literal))]
[XmlDefaultImplementationType(typeof(Literal))]
[ModelRepresentationClass("http://nmf.codeplex.com/nmeta/#//Literal")]
public interface ILiteral : IMetaElement, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Inherited Members
Extension Methods

Properties

Enumeration

The Enumeration property

[Browsable(false)]
[XmlAttribute(true)]
[XmlOpposite("Literals")]
IEnumeration Enumeration { get; set; }

Property Value

IEnumeration

Value

The Value property

[XmlAttribute(true)]
int? Value { get; set; }

Property Value

int?

Events

EnumerationChanged

Gets fired when the Enumeration property changed its value

event EventHandler<ValueChangedEventArgs> EnumerationChanged

Event Type

EventHandler<ValueChangedEventArgs>

EnumerationChanging

Gets fired before the Enumeration property changes its value

event EventHandler<ValueChangedEventArgs> EnumerationChanging

Event Type

EventHandler<ValueChangedEventArgs>

ValueChanged

Gets fired when the Value property changed its value

event EventHandler<ValueChangedEventArgs> ValueChanged

Event Type

EventHandler<ValueChangedEventArgs>

ValueChanging

Gets fired before the Value property changes its value

event EventHandler<ValueChangedEventArgs> ValueChanging

Event Type

EventHandler<ValueChangedEventArgs>