我发现此参考将更新 Word 文档中的所有字段。http://www.gmayor.com/installing_macro.htm
Sub UpdateAll()
Dim oStory As Range
For Each oStory In ActiveDocument.StoryRanges
oStory.Fields.Update
If oStory.StoryType <> wdMainTextStory Then
While Not (oStory.NextStoryRange Is Nothing)
Set oStory = oStory.NextStoryRange
oStory.Fields.Update
Wend
End If
Next oStory
Set oStory = Nothing
End Sub
我想将其修改为仅DocProperty
使用此宏更新类型的字段。
例如:我想更新所有DocProperty
类型,同时跳过所有Ref
类型或所有其他类型。