Working with Form Fields
Form Fields Overview
A document that contains fill-in blanks (fields) is known as a form. For example, you can create a registration form in Microsoft Word that uses drop-down lists from which users can select entries. The Form field is a location where a particular type of data, such as a name or address, is stored. Form fields in Microsoft Word include text input, combobox and checkbox.
You can use form fields in your project to “communicate” with your users. For example, you create a document whose content is protected, but only form fields are editable. The users can enter the data in the form fields and submit the document. Your application that uses Aspose.Words can retrieve data from the form fields and process it.
Form Fields in Microsoft Word
Inserting Form Fields in Microsoft Word
Use the Forms toolbar to insert form fields. To display the Forms toolbar, point to Toolbars on the View menu, and then click Forms.
- In the document, click where you want to insert the form field.
- Do any of the following:
- To insert a text input where users can enter text , click Text Form Field . You can specify a default entry so that users do not have to type an entry unless they want to change the response.
- To insert a check box that the user can select or clear , click Check Box Form Field .
- To insert a drop-down list box that restricts available choices to those you specify , click Drop-Down Form Field . If needed, a user can scroll through the list to view additional choices.
Deleting Form Fields in Microsoft Word
Simply select a form field and press DELETE.
Form Fields in Aspose.Words
Placing form fields into the document via code is easy. DocumentBuilder has special methods for inserting them, one for each form field type. Each of the methods accepts a string parameter representing the name of the form field. The name can be an empty string. If however you specify a name for the form field, then a bookmark is automatically created with the same name.
Inserting Form Fields
Form fields are a particular case of Word fields that allows “interaction” with the user. Form fields in Microsoft Word include textbox, combo box and checkbox. DocumentBuilder provides special methods to insert each type of form field into the document: DocumentBuilder.insert_text_input, DocumentBuilder.insert_check_box, and DocumentBuilder.insert_combo_box. Note that if you specify a name for the form field, then a bookmark is automatically created with the same name. The code example given below shows how to insert a combobox form field into a document.
Inserting a Text Input
Call DocumentBuilder.insert_text_input to insert a textbox into the document. The code example given below shows how to insert a text input form field into a document.
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_text_input("TextInput", aw.fields.TextFormFieldType.REGULAR, "", "Hello", 0)
doc.save(docs_base.artifacts_dir + "WorkingWithFormFields.document_builder_insert_text_input_form_field.docx")
Inserting a Check Box
Call DocumentBuilder.insert_check_box to insert a checkbox into the document. The code example given below shows how to insert a checkbox form field into a document.
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_check_box("CheckBox", True, True, 0)
doc.save(docs_base.artifacts_dir + "WorkingWithFormFields.document_builder_insert_check_box_form_field.docx")
Inserting a Combo Box
Call DocumentBuilder.insert_combo_box to insert a Combobox into the document. The code example given below shows how to insert a Combobox form field into a document.
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
items = ["One", "Two", "Three"]
builder.insert_combo_box("DropDown", items, 0)
doc.save(docs_base.artifacts_dir + "WorkingWithFormFields.document_builder_insert_combo_box_form_field.docx")
Obtaining Form Fields
A collection of form fields is represented by the FormFieldCollection class that can be retrieved using the Range.form_fields property. This means that you can obtain form fields contained in any document node including the document itself. The code example given below shows how to get a collection of form fields. You can download the template file of this example from here.
You can get a particular form field by its index or name. The code example given below shows how to access form fields. You can download the template file of this example from here.
The FormField properties allow you to work with form field name, type, and result. The code example given below shows how to work with form field name, type, and result. You can download the template file of this example from here.
Formatting Form Fields
The font property of FormField allows applying font formatting to the FormField as a whole including the field value. The following code example demonstrates how to apply font formatting to the FormField.