継承関係(Inheritance)

item
└XML data

要素(Elements)

XML element名前番号相対範囲フィルタID

属性(Properties)

itemクラスから継承された属性
name ユニコード
名前
text 文字列
文字列の形でのXMLデータ

解説(Note)

 パースされた、XMLデータ。

 XML elementオブジェクトを作って追加ということはできない。
 XML dataオブジェクトのtext属性にXML文字列を設定すると、パースして XML elementオブジェクトが作られる。
 Mac OS X10.4現在、ちょっと微妙な使い勝手となっている。

用例(Example)

  1. tell application "System Events"
    	set theXML to make XML data with properties {name:"HTML", text:"<html><head></head><body></body></html>"}
    	name of XML element 1 of XML element 1 of theXML
    end tell