Interface ILiteral
The public interface for Literal
Inherited Members
Namespace: NMF.Models.Meta
Assembly: NMF.Models.dll
Syntax
[DefaultImplementationType(typeof(Literal))]
[XmlDefaultImplementationType(typeof(Literal))]
[ModelRepresentationClass("http://nmf.codeplex.com/nmeta/#//Literal")]
public interface ILiteral : IMetaElement, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Properties
| Edit this page View SourceEnumeration
The Enumeration property
Declaration
[Browsable(false)]
[XmlAttribute(true)]
[XmlOpposite("Literals")]
IEnumeration Enumeration { get; set; }
Property Value
Type | Description |
---|---|
IEnumeration |
Value
The Value property
Declaration
[XmlAttribute(true)]
int? Value { get; set; }
Property Value
Type | Description |
---|---|
int? |
Events
| Edit this page View SourceEnumerationChanged
Gets fired when the Enumeration property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> EnumerationChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
EnumerationChanging
Gets fired before the Enumeration property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> EnumerationChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
ValueChanged
Gets fired when the Value property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> ValueChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
ValueChanging
Gets fired before the Value property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> ValueChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |