Skip to content

Latest commit

 

History

History
57 lines (35 loc) · 1.07 KB

Word.Document.Fields.md

File metadata and controls

57 lines (35 loc) · 1.07 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.Fields property (Word)
vbawd10.chm158007316
vbawd10.chm158007316
Word.Document.Fields
78707979-5d25-0168-2dba-ce88a2b26f9d
06/08/2017
medium

Document.Fields property (Word)

Returns a Fields collection that represents all the fields in the document. Read-only.

Syntax

expression. Fields

expression Required. A variable that represents a Document object.

Example

This example updates all the fields in the active document.

ActiveDocument.Fields.Update

This example removes all the fields from the main text story and the footer in the active document.

For Each aField in ActiveDocument.Fields 
 aField.Delete 
Next aField 
Set myRange = ActiveDocument.Sections(1).Footers _ 
 (wdHeaderFooterPrimary).Range 
For Each aField In myRange.Fields 
 aField.Delete 
Next aField

See also

Document Object

[!includeSupport and feedback]