Bookmark.Fields Property

Definition

Gets a read-only Fields collection that represents all the fields in the Bookmark control.

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

Property Value

A read-only Fields collection that represents all the fields in the Bookmark control.

Examples

The following code example adds a Bookmark control with text to the first paragraph, then adds a date field at the end of the bookmark.

This example is for a document-level customization.

C#
private void BookmarkFields()
{
    object Type = Word.WdFieldType.wdFieldDate;
    
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "The current date is: ";

    bookmark1.Fields.Add(bookmark1.Characters.Last, ref Type,
        ref missing, ref missing);
}

Applies to

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