source:
trunk/Include/Classes/System/Xml/XmlElement.ab@
466
Last change on this file since 466 was 442, checked in by , 17 years ago | |
---|---|
File size: 357 bytes |
Rev | Line | |
---|---|---|
[424] | 1 | Namespace System |
2 | Namespace Xml | |
3 | ||
4 | /*! | |
5 | @brief 要素を表します。 | |
6 | */ | |
7 | Class XmlElement | |
8 | Inherits XmlLinkedNode | |
9 | ||
10 | Public | |
11 | Sub XmlElement( prefix As String, localName As String, namespaceURI As String, doc As XmlDocument ) | |
[442] | 12 | XmlLinkedNode( XmlNodeType.Element, prefix, localName, namespaceURI, doc ) |
[424] | 13 | End Sub |
14 | End Class | |
15 | ||
16 | ||
17 | End Namespace | |
18 | End Namespace |
Note:
See TracBrowser
for help on using the repository browser.