source: trunk/Include/Classes/System/Xml/XmlAttribute.ab@ 442

Last change on this file since 442 was 442, checked in by dai, 16 years ago

XmlNodeType列挙型を実装

File size: 433 bytes
Line 
1Namespace System
2Namespace Xml
3
4/*!
5@brief 属性を表します。
6*/
7Class XmlAttribute
8 Inherits XmlNode
9
10Public
11 Sub XmlAttribute( prefix As String, localName As String, namespaceURI As String, doc As XmlDocument )
12 XmlNode( XmlNodeType.Attribute, prefix, localName, namespaceURI, doc )
13 End Sub
14End Class
15
16TypeDef XmlAttributeCollection = System.Collections.Generic.List<XmlAttribute>
17
18
19End Namespace
20End Namespace
Note: See TracBrowser for help on using the repository browser.