Word) (Field 物件
表示欄位。 Field 物件屬於 欄位 集合。 Fields 集合代表選取範圍、 範圍或文件中的欄位。
使用 欄位 (Index),其中 Index 是索引編號,可以傳回單一 欄位 物件。 索引編號代表選取範圍、 範圍或文件中欄位的位置。 下列範例會顯示使用中文件內的功能變數代碼與第一個功能變數的結果。
If ActiveDocument.Fields.Count >= 1 Then
MsgBox "Code = " & ActiveDocument.Fields(1).Code & vbCr _
& "Result = " & ActiveDocument.Fields(1).Result & vbCr
End If
Use the Add method to add a field to the Fields collection. The following example inserts a DATE field at the beginning of the selection and then displays the result.
Selection.Collapse Direction:=wdCollapseStart
Set myField = ActiveDocument.Fields.Add(Range:=Selection.Range, _
Type:=wdFieldDate)
MsgBox myField.Result
注意
[!注意事項] WdFieldDate 常數屬於 WdFieldType 常數群組的群組,其中包含各種欄位類型。
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。