Word) (Field.Next 屬性
會傳回集合中的下一個物件。 唯讀。
運算式。下
表達 代表 Field 物件的變數。
此範例會更新使用中文件內第一節中的欄位只要 Next 方法傳回 Field 物件和欄位不是 fillin 功能變數。
If ActiveDocument.Sections(1).Range.Fields.Count >= 1 Then
Set myField = ActiveDocument.Fields(1)
While Not (myField Is Nothing)
If myField.Type <> wdFieldFillIn Then myField.Update
Set myField = myField.Next
Wend
End If
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。