共用方式為


Word) (FormField 物件

代表單一表單欄位。 FormField 物件是 FormFields 成員 集合。

註解

使用 FormFields (索引) ,其中 index 是書簽名稱或索引編號,可傳回單一 FormField 物件。 下列範例會將 Text1 表單欄位的結果設定為"Don Funk"。

ActiveDocument.FormFields("Text1").Result = "Don Funk"

索引編號是表示表單欄位在選取項目、範圍或文件中的位置。 下列範例會顯示選取項目中第一個表單欄位的名稱。

If Selection.FormFields.Count >= 1 Then 
 MsgBox Selection.FormFields(1).Name 
End If

Use the Add method with the FormFields object to add a form field. The following example adds a check box at the beginning of the active document and then selects the check box.

Set ffield = ActiveDocument.FormFields.Add( _ 
 Range:=ActiveDocument.Range(Start:=0, End:=0), _ 
 Type:=wdFieldFormCheckBox) 
ffield.CheckBox.Value = True

使用 ] 核取方塊下拉式清單TextInput 傳回 CheckDown下拉式清單 ,以及 TextInput 物件的 FormField 物件的屬性。 下列範例會選取核取方塊上名為"Check1"。

ActiveDocument.FormFields("Check1").CheckBox.Value = True

請參閱

Word 物件模型參考資料

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應