XmlTextWriter.Formatting 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
출력의 형식이 지정되는 방법을 나타냅니다.
public:
property System::Xml::Formatting Formatting { System::Xml::Formatting get(); void set(System::Xml::Formatting value); };
public System.Xml.Formatting Formatting { get; set; }
member this.Formatting : System.Xml.Formatting with get, set
Public Property Formatting As Formatting
속성 값
Formatting 값 중 하나입니다. 기본값은 Formatting.None
(특별한 형식 지정 없음)입니다.
예제
다음 예제에서는 XML 조각을 씁니다.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
//Create a writer to write XML to the console.
XmlTextWriter^ writer = nullptr;
writer = gcnew XmlTextWriter( Console::Out );
//Use indentation for readability.
writer->Formatting = Formatting::Indented;
writer->Indentation = 4;
//Write an element (this one is the root).
writer->WriteStartElement( "book" );
//Write the title element.
writer->WriteStartElement( "title" );
writer->WriteString( "Pride And Prejudice" );
writer->WriteEndElement();
//Write the close tag for the root element.
writer->WriteEndElement();
//Write the XML to file and close the writer.
writer->Close();
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
//Create a writer to write XML to the console.
XmlTextWriter writer = null;
writer = new XmlTextWriter (Console.Out);
//Use indentation for readability.
writer.Formatting = Formatting.Indented;
writer.Indentation = 4;
//Write an element (this one is the root).
writer.WriteStartElement("book");
//Write the title element.
writer.WriteStartElement("title");
writer.WriteString("Pride And Prejudice");
writer.WriteEndElement();
//Write the close tag for the root element.
writer.WriteEndElement();
//Write the XML to file and close the writer.
writer.Close();
}
}
Option Explicit
Option Strict
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
'Create a writer to write XML to the console.
Dim writer As XmlTextWriter = Nothing
writer = New XmlTextWriter(Console.Out)
'Use indentation for readability.
writer.Formatting = Formatting.Indented
writer.Indentation = 4
'Write an element (this one is the root).
writer.WriteStartElement("book")
'Write the title element.
writer.WriteStartElement("title")
writer.WriteString("Pride And Prejudice")
writer.WriteEndElement()
'Write the close tag for the root element.
writer.WriteEndElement()
'Write the XML to file and close the writer.
writer.Close()
End Sub
End Class
설명
참고
.NET Framework 2.0부터 메서드와 XmlWriterSettings 클래스를 사용하여 XmlWriter.Create 인스턴스를 만들어 XmlWriter 새 기능을 활용하는 것이 좋습니다.
Indented
옵션을 설정하면 자식 요소가 들 IndentChar 여쓰기되고 속성이 Indentation 들여쓰기됩니다. 요소 콘텐츠만 들여쓰기됩니다. 다음 C# 코드는 혼합 콘텐츠를 포함한 HTML 요소를 작성합니다.
XmlTextWriter w = new XmlTextWriter(Console.Out);
w.Formatting = Formatting.Indented;
w.WriteStartElement("ol");
w.WriteStartElement("li");
w.WriteString("The big "); // This means "li" now has a mixed content model.
w.WriteElementString("b", "E");
w.WriteElementString("i", "lephant");
w.WriteString(" walks slowly.");
w.WriteEndElement();
w.WriteEndElement();
위의 코드는 다음 출력을 생성합니다.
<ol>
<li>The big <b>E</b><i>lephant</i> walks slowly.</li>
</ol>
HTML에서 볼 때 굵게와 기울기 요소 사이에 공백이 나타나지 않습니다. 실제로 이 예제에서 이러한 요소 사이에 들여쓰기를 추가하면 "Elephant"라는 단어가 잘못 손상됩니다.
참고
텍스트 콘텐츠를 작성하면 해당 String.Empty
요소가 혼합 콘텐츠 모드로 전환됩니다. 자식 요소는 이 "혼합" 모드 상태를 상속하지 않습니다. "mixed" 요소의 자식 요소는 "혼합" 콘텐츠도 포함하지 않는 한, 압축을 립니다. 요소 콘텐츠 및 혼합 콘텐츠 는 이러한 용어의 XML 1.0 정의에 따라 정의됩니다.