Scilab-Branch-6.1-GIT
- Scilabヘルプ
- XML Management
- htmlDump
- htmlRead
- htmlReadStr
- htmlWrite
- xmlAddNs
- xmlAppend
- xmlAsNumber
- xmlAsText
- xmlDelete
- xmlDocument
- xmlDTD
- xmlDump
- xmlElement
- xmlFormat
- xmlGetNsByHref
- xmlGetNsByPrefix
- xmlGetOpenDocs
- xmlGetValues
- xmlIsValidObject
- xmlName
- xmlNs
- XML Objects
- xmlRead
- xmlReadStr
- xmlRelaxNG
- xmlRemove
- xmlSchema
- xmlSetAttributes
- xmlSetValues
- xmlValidate
- xmlWrite
- xmlXPath
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
xmlAddNs
XML要素に名前空間を追加
呼び出し手順
xmlAddNs(elem, [, ns1 [, ns2, ...]])
引数
- elem
XMLElem型のmlist
- nsi
XMLNs型のmlist
説明
要素に1つ以上の名前空間を追加します.
例
doc = xmlDocument("TMPDIR/foo.xml"); doc.root = xmlElement(doc, "root"); a = xmlElement(doc, "a"); b = xmlElement(doc, "b"); ns_scilab = xmlNs(a, "scilab", "http://www.scilab.org"); ns_balics = xmlNs(a, "balics", "http://gro.balics.www"); xmlAddNs(b, ns_scilab, ns_balics); doc.root.children(1) = a; doc.root.children(2) = b; xmlDump(doc) xmlDelete(doc);
参照
- XML Objects — 異なるのXMLオブジェクトのプロパティを記述する
- xmlDocument — XML文書を新規に作成
- xmlElement — XML要素を新規に作成する
- xmlNs — XML名前空間を新規に作成する
- xmlGetNsByHref — 名前名前をhrefにより取得する
- xmlGetNsByPrefix — 接頭辞により名前空間を取得する
履歴
バージョン | 記述 |
5.4.0 | XMLモジュールが導入されました. |
Report an issue | ||
<< htmlWrite | XML Management | xmlAppend >> |