Interface ILiteral
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
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
EnumerationChanging
Gets fired before the Enumeration property changes its value
event EventHandler<ValueChangedEventArgs> EnumerationChanging
Event Type
ValueChanged
Gets fired when the Value property changed its value
event EventHandler<ValueChangedEventArgs> ValueChanged
Event Type
ValueChanging
Gets fired before the Value property changes its value
event EventHandler<ValueChangedEventArgs> ValueChanging