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

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

XmlNodeType列挙型を実装

File size: 365 bytes
Line 
1Namespace System
2Namespace Xml
3
4/*!
5@brief 複数のクラスで使用する、テキスト操作メソッドを提供します。
6*/
7Class XmlText
8 Inherits XmlCharacterData
9
10Public
11
12 /*!
13 @brief コンストラクタ
14 */
15 Sub XmlText( strData As String, doc As XmlDocument )
16 XmlCharacterData( XmlNodeType.Text, strData, doc )
17 End Sub
18End Class
19
20
21End Namespace
22End Namespace
Note: See TracBrowser for help on using the repository browser.