我正在尝试在页眉中插入两个字段。我可以在当前选择中插入它们(参见下面的代码),但我不希望在插入字段之前不必选择页眉。这可以做到吗?
Sub insertFields()
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, Text:="DOCPROPERTY LastSavedTime ", PreserveFormatting:=True
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, Text:="FileName", PreserveFormatting:=True
End Sub