Interface IProcessingInstruction
The public interface for ProcessingInstruction
Inherited Members
Namespace: NMF.Interop.Type
Assembly: NMF.EcoreInterop.dll
Syntax
[DefaultImplementationType(typeof(ProcessingInstruction))]
[XmlDefaultImplementationType(typeof(ProcessingInstruction))]
public interface IProcessingInstruction : IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Properties
| Edit this page View SourceData
The data property
Declaration
[XmlElementName("data")]
[XmlAttribute(true)]
string Data { get; set; }
Property Value
Type | Description |
---|---|
string |
Target
The target property
Declaration
[XmlElementName("target")]
[XmlAttribute(true)]
string Target { get; set; }
Property Value
Type | Description |
---|---|
string |
Events
| Edit this page View SourceDataChanged
Gets fired when the Data property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> DataChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
DataChanging
Gets fired before the Data property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> DataChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
TargetChanged
Gets fired when the Target property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> TargetChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
TargetChanging
Gets fired before the Target property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> TargetChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |