次の方法で共有


XmlTextWriter.WriteWhitespace メソッド

指定した空白を書き込みます。

Overrides Public Sub WriteWhitespace( _
   ByVal ws As String _)
[C#]
public override void WriteWhitespace(stringws);
[C++]
public: void WriteWhitespace(String* ws);
[JScript]
public override function WriteWhitespace(
   ws : String);

パラメータ

  • ws
    空白文字の文字列。

例外

例外の種類 条件
ArgumentException 文字列に、空白以外の文字が含まれています。

解説

このメソッドは、手動でドキュメントを書式設定するときに使用します。 Formatting プロパティを使用して、ライタが自動的に出力を書式設定するようにします。

使用例

[Visual Basic, C#, C++] WriteWhitespace メソッドを使用して、ファイルを書式設定する方法を制御する例を次に示します。

 
Option Strict
Option Explicit

Imports System
Imports System.IO
Imports System.Xml

Public Class Sample
    
    Public Shared Sub Main()
        ' Create the writer.
        Dim writer As XmlTextWriter = Nothing
        writer = New XmlTextWriter("ws.html", Nothing)
        
        ' Write an element (this one is the root).
        writer.WriteStartElement("p")
        
        ' Write the xml:space attribute.
        writer.WriteAttributeString("xml", "space", Nothing, "preserve")
        
        ' Verify that xml:space is set properly.
        If writer.XmlSpace = XmlSpace.Preserve Then
            Console.WriteLine("xmlspace is correct!")
        End If 
        ' Write out the HTML elements.  Insert white space
        ' between 'something' and 'Big'.
        writer.WriteString("something")
        writer.WriteWhitespace("  ")
        writer.WriteElementString("b", "B")
        writer.WriteString("ig")
        
        ' Write the root end element.
        writer.WriteEndElement()
        
        ' Write the XML to file and close the writer.
        writer.Close()
    End Sub 'Main
End Class 'Sample

[C#] 
using System;
using System.IO;
using System.Xml;

public class Sample
{  
  public static void Main()
  {
    // Create the writer.
    XmlTextWriter writer = null;
    writer = new XmlTextWriter ("ws.html", null);

    // Write an element (this one is the root).
    writer.WriteStartElement("p");

    // Write the xml:space attribute.
    writer.WriteAttributeString("xml", "space", null, "preserve");

    // Verify that xml:space is set properly.
    if (writer.XmlSpace == XmlSpace.Preserve)
      Console.WriteLine("xmlspace is correct!");

    // Write out the HTML elements.  Insert white space
    // between 'something' and 'Big'
    writer.WriteString("something");
    writer.WriteWhitespace("  ");
    writer.WriteElementString("b", "B");
    writer.WriteString("ig");

    // Write the root end element.
    writer.WriteEndElement();
             
    // Write the XML to file and close the writer.
    writer.Close();  
  }
}

[C++] 
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;

int main()
{
    // Create the writer.
    XmlTextWriter* writer = 0;
    writer = new XmlTextWriter (S"ws.html", 0);

    // Write an element (this one is the root).
    writer->WriteStartElement(S"p");

    // Write the xml:space attribute.
    writer->WriteAttributeString(S"xml", S"space", 0, S"preserve");

    // Verify that xml:space is set properly.
    if (writer->XmlSpace == XmlSpace::Preserve)
        Console::WriteLine(S"xmlspace is correct!");

    // Write out the HTML elements.  Insert white space
    // between 'something' and 'Big'
    writer->WriteString(S"something");
    writer->WriteWhitespace(S"  ");
    writer->WriteElementString(S"b", S"B");
    writer->WriteString(S"ig");

    // Write the root end element.
    writer->WriteEndElement();
             
    // Write the XML to file and close the writer.
    writer->Close();  
  }

[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, Common Language Infrastructure (CLI) Standard

参照

XmlTextWriter クラス | XmlTextWriter メンバ | System.Xml 名前空間 | Formatting