다음을 통해 공유


HtmlDocument.Body 속성

정의

BODY 태그에 대한 HtmlElement를 가져옵니다.

public:
 property System::Windows::Forms::HtmlElement ^ Body { System::Windows::Forms::HtmlElement ^ get(); };
public System.Windows.Forms.HtmlElement Body { get; }
member this.Body : System.Windows.Forms.HtmlElement
Public ReadOnly Property Body As HtmlElement

속성 값

HtmlElement

합니다 HtmlElement 개체를 본문 태그입니다.

예제

다음 코드 예제에서는 새 DIV 요소를 사용 하 여 문서 맨 아래에 추가 된 AppendChild 메서드.

private void AppendText(String text)
{
    if (webBrowser1.Document != null)
    {
        HtmlDocument doc = webBrowser1.Document;
        HtmlElement textElem = doc.CreateElement("DIV");
        textElem.InnerText = text;
        doc.Body.AppendChild(textElem);
    }
}
Private Sub AppendText(ByVal Text As String)
    If (WebBrowser1.Document IsNot Nothing) Then
        With WebBrowser1.Document
            Dim TextElem As HtmlElement = .CreateElement("DIV")
            TextElem.InnerText = Text
            .Body.AppendChild(TextElem)
        End With
    End If
End Sub

설명

HTML 문서는 두 개의 주요 섹션으로 분할 됩니다.

  • HEAD에 문서의 제목, 문서 메타 데이터를 포함 하는 및 SCRIPT 요소입니다.

  • BODY모든 관련 된 요소를 포함 하는 화면의 문서의 모양을.

동등한 옵션이 없습니다 Head 속성을 HtmlDocument입니다. 가져오려고 합니다 HEAD 요소를 사용 하 여 GetElementsByTagName입니다.

적용 대상

추가 정보