Document Properties (2007 ...


Visual Studio Tools for Office API Reference
Document..::.Sections Property (2007 System)

Gets a Sections collection that represents the sections in the document.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)
Syntax

Visual Basic (Declaration)
<BrowsableAttribute(False)> _
Public ReadOnly Property Sections As Sections
Visual Basic (Usage)
Dim instance As Document
Dim value As Sections

value = instance.Sections
C#
[BrowsableAttribute(false)]
public Sections Sections { get; }

Property Value

Type: Microsoft.Office.Interop.Word..::.Sections
A Sections collection that represents the sections in the document.
Examples

The following code example adds text to the first paragraph in the document and then adds a new section before the text.

This example is for a document-level customization.

Visual Basic
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 
C#
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);
}
Permissions

See Also

Reference

Tags :


Page view tracker