|
| static Element | Read (XElement element) |
| | Reads the XML element into a new Element instance.
|
| |
| static void | Load (Element e, XElement element) |
| | Loads the XML element into the instruction.
|
| |
|
| string | Value [get, set] |
| |
| int | LineNumber [get, set] |
| | Gets the line number in the source file where this element occurs.
|
| |
| int | LinePosition [get, set] |
| | Gets the line position in the source file where this element occurs.
|
| |
|
| static void | Load (MapXmlElement e, XElement element) |
| | Loads the XML element into the instance.
|
| |
Definition at line 30 of file Element.cs.
◆ Load()
| static void IKVM.Tools.Importer.MapXml.Element.Load |
( |
Element | e, |
|
|
XElement | element ) |
|
static |
Loads the XML element into the instruction.
- Parameters
-
Definition at line 50 of file Element.cs.
51 {
52 Load((MapXmlElement)e, element);
53 e.Value = element.Value;
54 }
◆ Read()
| static Element IKVM.Tools.Importer.MapXml.Element.Read |
( |
XElement | element | ) |
|
|
static |
Reads the XML element into a new Element instance.
- Parameters
-
- Returns
Definition at line 38 of file Element.cs.
39 {
40 var e = new Element();
42 return e;
43 }
◆ Value
| string IKVM.Tools.Importer.MapXml.Element.Value |
|
getset |
The documentation for this class was generated from the following file: