Bookmark.FormFields Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a FormFields collection that represents all the form fields in the Bookmark control.
public:
property Microsoft::Office::Interop::Word::FormFields ^ FormFields { Microsoft::Office::Interop::Word::FormFields ^ get(); };
public Microsoft.Office.Interop.Word.FormFields FormFields { get; }
member this.FormFields : Microsoft.Office.Interop.Word.FormFields
Public ReadOnly Property FormFields As FormFields
Property Value
A FormFields collection that represents all the form fields in the Bookmark control.
Examples
The following code example adds a Bookmark control to the first paragraph and then adds a wdFieldFormCheckBox to the bookmark.
This example is for a document-level customization.
private void BookmarkFormFields()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[1].Range,
"bookmark1");
bookmark1.FormFields.Add(bookmark1.Range,
Word.WdFieldType.wdFieldFormCheckBox);
}
Private Sub BookmarkFormFields()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
Bookmark1.FormFields.Add(Bookmark1.Range, _
Word.WdFieldType.wdFieldFormCheckBox)
End Sub
Remarks
When you use the Add method of the FormFields, you can only pass one of the following enumerations: