Freigeben über


DocumentBase.Sections-Eigenschaft

Ruft eine Sections-Auflistung ab, die die Abschnitte im Dokument darstellt.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Syntax

'Declaration
Public ReadOnly Property Sections As Sections
    Get
public Sections Sections { get; }

Eigenschaftswert

Typ: Microsoft.Office.Interop.Word.Sections
Eine Sections-Auflistung, die die Abschnitte im Dokument darstellt.

Beispiele

Im folgenden Codebeispiel wird dem ersten Absatz im Dokument Text hinzugefügt, und anschließend wird vor dem Text ein neuer Abschnitt hinzugefügt. Wenn Sie dieses Beispiel verwenden möchten, führen Sie es von der ThisDocument-Klasse in einem Projekt auf Dokumentebene aus.

Private Sub DocumentSections()
    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Me.Paragraphs(1).Range.Text = "This is sample text."
    Dim Range As Object = Me.Paragraphs(1).Range

    Me.Sections.Add(Range)
End Sub 
private void DocumentSections()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    this.Paragraphs[1].Range.Text = "This is sample text.";
    object Range = this.Paragraphs[1].Range;

    this.Sections.Add(ref Range, ref missing);
}

.NET Framework-Sicherheit

Siehe auch

Referenz

DocumentBase Klasse

Microsoft.Office.Tools.Word-Namespace