Table of Contents

Interface ITypedElement

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

The public interface for TypedElement

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

Properties

IsOrdered

The IsOrdered property

[TypeConverter(typeof(LowercaseBooleanConverter))]
[XmlAttribute(true)]
bool IsOrdered { get; set; }

Property Value

bool

IsUnique

The IsUnique property

[TypeConverter(typeof(LowercaseBooleanConverter))]
[XmlAttribute(true)]
bool IsUnique { get; set; }

Property Value

bool

LowerBound

The LowerBound property

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

Property Value

int

Type

The Type property

[XmlAttribute(true)]
IType Type { get; set; }

Property Value

IType

UpperBound

The UpperBound property

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

Property Value

int

Events

IsOrderedChanged

Gets fired when the IsOrdered property changed its value

event EventHandler<ValueChangedEventArgs> IsOrderedChanged

Event Type

EventHandler<ValueChangedEventArgs>

IsOrderedChanging

Gets fired before the IsOrdered property changes its value

event EventHandler<ValueChangedEventArgs> IsOrderedChanging

Event Type

EventHandler<ValueChangedEventArgs>

IsUniqueChanged

Gets fired when the IsUnique property changed its value

event EventHandler<ValueChangedEventArgs> IsUniqueChanged

Event Type

EventHandler<ValueChangedEventArgs>

IsUniqueChanging

Gets fired before the IsUnique property changes its value

event EventHandler<ValueChangedEventArgs> IsUniqueChanging

Event Type

EventHandler<ValueChangedEventArgs>

LowerBoundChanged

Gets fired when the LowerBound property changed its value

event EventHandler<ValueChangedEventArgs> LowerBoundChanged

Event Type

EventHandler<ValueChangedEventArgs>

LowerBoundChanging

Gets fired before the LowerBound property changes its value

event EventHandler<ValueChangedEventArgs> LowerBoundChanging

Event Type

EventHandler<ValueChangedEventArgs>

TypeChanged

Gets fired when the Type property changed its value

event EventHandler<ValueChangedEventArgs> TypeChanged

Event Type

EventHandler<ValueChangedEventArgs>

TypeChanging

Gets fired before the Type property changes its value

event EventHandler<ValueChangedEventArgs> TypeChanging

Event Type

EventHandler<ValueChangedEventArgs>

UpperBoundChanged

Gets fired when the UpperBound property changed its value

event EventHandler<ValueChangedEventArgs> UpperBoundChanged

Event Type

EventHandler<ValueChangedEventArgs>

UpperBoundChanging

Gets fired before the UpperBound property changes its value

event EventHandler<ValueChangedEventArgs> UpperBoundChanging

Event Type

EventHandler<ValueChangedEventArgs>