Remove Fields

Contents
[ ]

Sometimes it is necessary to remove a field from the document. This may occur when it is to be replaced with a different field type or when the field is no longer needed in the document. For example a TOC field when saving to HTML.

To remove a field inserted into a document using DocumentBuilder.insert_field, use the returned Field object, which provides the convenient remove method to easily remove the field from the document.

The following code example shows how to remove a field from the document:

# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET
doc = aw.Document(docs_base.my_dir + "Various fields.docx")
field = doc.range.fields[0]
field.remove()