Namespace System Namespace Xml /*! @brief 複数のクラスで使用する、テキスト操作メソッドを提供します。 */ Class XmlText Inherits XmlCharacterData Public /*! @brief コンストラクタ */ Sub XmlText( strData As String, doc As XmlDocument ) XmlCharacterData( XmlNodeType.Text, strData, doc ) End Sub Protected Override Function InnerXmlSupportedIndent( isIndent = False As Boolean, indent = 0 As Long ) As String Return Value End Function Override Function OwnerXmlSupportedIndent( isIndent = False As Boolean, indent = 0 As Long ) As String Return Value End Function End Class End Namespace End Namespace