XmlElement.IsEmpty プロパティ
要素のタグ形式を取得または設定します。
Public Property IsEmpty As Boolean
[C#]
public bool IsEmpty {get; set;}
[C++]
public: __property bool get_IsEmpty();public: __property void set_IsEmpty(bool);
[JScript]
public function get IsEmpty() : Boolean;public function set IsEmpty(Boolean);
プロパティ値
要素が短いタグ形式 "<item/>" でシリアル化される場合は true を返します。長い形式 "<item></item>" の場合は false を返します。
このプロパティを設定する場合、 true に設定すると、要素の子が削除され、要素は短いタグ形式でシリアル化されます。 false に設定した場合は、要素に内容があるかどうかにかかわらず、プロパティの値は変更されます。要素が空の場合は、長い形式でシリアル化されます。
このプロパティは、ドキュメント オブジェクト モデル (DOM: Document Object Model) に対する Microsoft 拡張機能です。
解説
このプロパティは、DOM (Document Object Model) の Microsoft 拡張機能です。
使用例
[Visual Basic, C#, C++] 空の要素に内容を追加する例を次に示します。
Imports System
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book>" & _
" <title>Pride And Prejudice</title>" & _
" <price/>" & _
"</book>")
Dim currNode as XmlElement
currNode = CType (doc.DocumentElement.LastChild, XmlElement)
if (currNode.IsEmpty)
currNode.InnerXml="19.95"
end if
Console.WriteLine("Display the modified XML...")
Console.WriteLine(doc.OuterXml)
end sub
end class
[C#]
using System;
using System.Xml;
public class Sample {
public static void Main() {
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book>"+
" <title>Pride And Prejudice</title>" +
" <price/>" +
"</book>");
XmlElement currNode = (XmlElement) doc.DocumentElement.LastChild;
if (currNode.IsEmpty)
currNode.InnerXml="19.95";
Console.WriteLine("Display the modified XML...");
Console.WriteLine(doc.OuterXml);
}
}
[C++]
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::Xml;
int main()
{
XmlDocument* doc = new XmlDocument();
doc->LoadXml(S"<book> <title>Pride And Prejudice</title> <price/></book>");
XmlElement* currNode = dynamic_cast<XmlElement*> (doc->DocumentElement->LastChild);
if (currNode->IsEmpty)
currNode->InnerXml=S"19.95";
Console::WriteLine(S"Display the modified XML...");
Console::WriteLine(doc->OuterXml);
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET