XmlDocument.CreateSignificantWhitespace メソッド
XmlSignificantWhitespace ノードを作成します。
Public Overridable Function CreateSignificantWhitespace( _
ByVal text As String _) As XmlSignificantWhitespace
[C#]
public virtual XmlSignificantWhitespace CreateSignificantWhitespace(stringtext);
[C++]
public: virtual XmlSignificantWhitespace* CreateSignificantWhitespace(String* text);
[JScript]
public function CreateSignificantWhitespace(
text : String) : XmlSignificantWhitespace;
パラメータ
- text
文字列には、、 、 、および 	 の文字だけを含める必要があります。
戻り値
新しい XmlSignificantWhitespace ノード。
解説
このメソッドは、DOM (Document Object Model) に対する Microsoft 拡張機能です。ドキュメントを手動で書式指定するときに使用します。
このメソッドは、ドキュメントのコンテキスト内で新しいオブジェクトを作成しますが、自動的には新しいオブジェクトをドキュメント ツリーに追加しません。新しいオブジェクトを追加するには、ノード挿入メソッドのいずれか 1 つを明示的に呼び出す必要があります。
使用例
[Visual Basic, C#, C++] ドキュメントに有意な空白を追加する例を次に示します。
Option Explicit
Option Strict
Imports System
Imports System.Xml
Imports Microsoft.VisualBasic
Public Class Sample
Public Shared Sub Main()
Dim doc As New XmlDocument()
doc.LoadXml("<author xml:space='preserve'>" & _
"<first-name>Eva</first-name>" & _
"<last-name>Corets</last-name>" & _
"</author>")
Console.WriteLine("InnerText before...")
Console.WriteLine(doc.DocumentElement.InnerText)
' Add white space.
Dim currNode as XmlNode = doc.DocumentElement
Dim sigws As XmlSignificantWhitespace = doc.CreateSignificantWhitespace(ControlChars.Tab)
currNode.InsertAfter(sigws, currNode.FirstChild)
Console.WriteLine()
Console.WriteLine("InnerText after...")
Console.WriteLine(doc.DocumentElement.InnerText)
End Sub
End Class 'Sample
[C#]
using System;
using System.Xml;
public class Sample {
public static void Main() {
XmlDocument doc = new XmlDocument();
doc.LoadXml("<author xml:space='preserve'>" +
"<first-name>Eva</first-name>"+
"<last-name>Corets</last-name>" +
"</author>");
Console.WriteLine("InnerText before...");
Console.WriteLine(doc.DocumentElement.InnerText);
// Add white space.
XmlNode currNode = doc.DocumentElement;
XmlSignificantWhitespace sigws = doc.CreateSignificantWhitespace("\t");
currNode.InsertAfter(sigws, currNode.FirstChild);
Console.WriteLine();
Console.WriteLine("InnerText after...");
Console.WriteLine(doc.DocumentElement.InnerText);
}
}
[C++]
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::Xml;
int main()
{
XmlDocument* doc = new XmlDocument();
doc->LoadXml(S"<author xml:space='preserve'><first-name>Eva</first-name><last-name>Corets</last-name></author>");
Console::WriteLine(S"InnerText before...");
Console::WriteLine(doc->DocumentElement->InnerText);
// Add white space.
XmlNode* currNode = doc->DocumentElement;
XmlSignificantWhitespace* sigws = doc->CreateSignificantWhitespace(S"\t");
currNode->InsertAfter(sigws, currNode->FirstChild);
Console::WriteLine();
Console::WriteLine(S"InnerText after...");
Console::WriteLine(doc->DocumentElement->InnerText);
}
[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