Xml.XMLIntf.IXMLNode.NodeName
Delphi
property NodeName: DOMstring read GetNodeName;
C++
__property System::UnicodeString NodeName = {read=GetNodeName};
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
property | public | Xml.XMLIntf.pas Xml.XMLIntf.hpp |
Xml.XMLIntf | IXMLNode |
説明
ノード名を示します。
NodeName プロパティは,基底の DOM ノードの名前です。
ノードの名前は,次の表に示すようにノードの型によって異なります。
NodeType | NodeName |
---|---|
ntAttribute |
属性名 |
ntElement |
タグ名 |
ntText |
'#text' |
ntCData |
'#cdata-section' |
ntEntityRef |
エンティティ参照の名前 |
ntEntity |
エンティティ名 |
ntProcessingInstr |
処理命令の対象 |
ntComment |
'#comment' |
ntDocument |
'#document' |
ntDocType |
ドキュメント型名 |
ntDocFragment |
'#document-fragment' |
ntNotation |
表記名 |
メモ: ノードに Prefix プロパティおよび LocalName プロパティが定義されている場合,ノード名は,この 2 つの値の組み合わせになります。