Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To update fields of Word Document using Aspose.Words Java Apis in Python, simply invoke updateFields of Document object.
Python Code
Document = jpype.JClass("com.aspose.words.Document")
DocumentBuilder = jpype.JClass("com.aspose.words.DocumentBuilder")
BreakType = jpype.JClass("com.aspose.words.BreakType")
StyleIdentifier = jpype.JClass("com.aspose.words.StyleIdentifier")
\# Demonstrates how to insert fields and update them using Aspose.Words.
\# First create a blank document.
doc = Document()
\# Use the document builder to insert some content and fields.
builder = DocumentBuilder(doc)
\# Start the actual document content on the second page.
builder.insertBreak(BreakType.SECTION_BREAK_NEW_PAGE)
\# Call the method below to update the TOC.
doc.updateFields()
Download Update Fields (Aspose.Words) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.