Bookmark.Sections Property

Definition

Gets a Sections collection that represents the sections in the Bookmark control.

C#
public Microsoft.Office.Interop.Word.Sections Sections { get; }

Property Value

A Sections collection that represents the sections in the Bookmark control.

Examples

The following code example adds a Bookmark control with text to the document and then inserts a Next page section break before the fourth word in the bookmark.

This example is for a document-level customization.

C#
private void BookmarkInsertBreak()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This text will have a section break.";

    object Type = Word.WdBreakType.wdSectionBreakNextPage;
    bookmark1.Words[4].InsertBreak(ref Type);
    MessageBox.Show("bookmark1 contains " + bookmark1.Sections.Count +
        " sections.");
}

Applies to

Product Versions
Visual Studio Tools for Office 2017, 2019, 2022