Ignore:
Timestamp:
Feb 28, 2008, 11:36:03 PM (16 years ago)
Author:
dai
Message:

タグ属性に対応。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/Classes/System/Xml/XmlDocument.ab

    r442 r443  
    3939    /*!
    4040    @brief  指定した値を使用して、XmlDeclaration ノードを作成します。
     41    @param  version XMLのバージョン番号。
     42            encoding 文字コード。(例:"shift-jis", "UTF-8", "EUC-JP")
     43            standalone 外部DTDの参照が必要かどうか。"yes" or "no"
    4144    */
    4245    Function CreateXmlDeclaration( version As String, encoding As String, standalone As String ) As XmlDeclaration
     
    4548
    4649    /*!
     50    @brief  指定した名前を使用して属性を作成します。
     51    @param  name 属性名
     52    */
     53    Function CreateAttribute( name As String) As XmlAttribute
     54        VerifyLocalName( name )
     55
     56        Return New XmlAttribute( "", name, "", This )
     57    End Function
     58
     59    /*!
    4760    @brief  指定した名前を使用して要素を作成します。
     61    @param  name 要素名。
    4862    */
    4963    Function CreateElement( name As String ) As XmlElement
Note: See TracChangeset for help on using the changeset viewer.