source: trunk/ab5.0/ablib/src/Classes/System/Xml/XmlText.ab

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

XmlDocument.Saveメソッドを実装。
Xml文書生成処理を改良。

File size: 652 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
18
19Protected
20 Override Function InnerXmlSupportedIndent( isIndent = False As Boolean, indent = 0 As Long ) As String
21 Return Value
22 End Function
23
24 Override Function OwnerXmlSupportedIndent( isIndent = False As Boolean, indent = 0 As Long ) As String
25 Return Value
26 End Function
27End Class
28
29
30End Namespace
31End Namespace
Note: See TracBrowser for help on using the repository browser.