Changeset 443 for trunk/Include/Classes/System/Xml/XmlDocument.ab
- Timestamp:
- Feb 28, 2008, 11:36:03 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/Classes/System/Xml/XmlDocument.ab
r442 r443 39 39 /*! 40 40 @brief 指定した値を使用して、XmlDeclaration ノードを作成します。 41 @param version XMLのバージョン番号。 42 encoding 文字コード。(例:"shift-jis", "UTF-8", "EUC-JP") 43 standalone 外部DTDの参照が必要かどうか。"yes" or "no" 41 44 */ 42 45 Function CreateXmlDeclaration( version As String, encoding As String, standalone As String ) As XmlDeclaration … … 45 48 46 49 /*! 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 /*! 47 60 @brief 指定した名前を使用して要素を作成します。 61 @param name 要素名。 48 62 */ 49 63 Function CreateElement( name As String ) As XmlElement
Note:
See TracChangeset
for help on using the changeset viewer.