Updating TOC Page Numberings in Word Documents Before Exporting to DOCX Format
Environment
| Version | Product | Author |
|---|---|---|
| 2024.2.426 | RadWordsProcessing | Desislava Yordanova |
Description
When working with Word documents that contain a Table of Contents (TOC), it is often necessary to update the TOC to reflect the correct page numbers before exporting the document to DOCX format. This KB article shows what steps are needed to refresh the page numbers in a document's TOC before exporting the flow document content to DOCX format.
| Before | After |
|---|---|
![]() | ![]() |
Solution
To update the TOC in a RadFlowDocument before exporting it to DOCX format, follow these steps:
-
Ensure that your document contains a TOC field. RadWordsProcessing supports the TOC field and allows for its update before exporting the document.
-
Before exporting the document to PDF, use the
UpdateFields()method to update all fields, including the TOC, in theRadFlowDocument. This ensures that the TOC reflects the correct page numbers. -
To accurately update the TOC, including the correct page numbering, you need to calculate the layout of the document. RadWordsProcessing provides the NumberingFieldsProvider for this purpose.
FlowExtensibilityManager.NumberingFieldsProvider = new NumberingFieldsProvider();
document.UpdateFields();
By setting the NumberingFieldsProvider and then calling RadFlowDocument.UpdateFields(), the document updates the TOC to reflect the correct page numbering.
It is possible to update a single field, not all of them:
FieldCharacter fieldCharacter = document.EnumerateChildrenOfType<FieldCharacter>().First(x=> x.FieldInfo.Field is TocField);
FieldInfo fieldInfo = fieldCharacter.FieldInfo;
fieldInfo.UpdateField();
- With the TOC updated, you can now proceed to export the document to DOCX format, confident that the TOC displays the correct page references.
Notes
- The
UpdateFields()method updates all fields in the document, not only the TOC. Ensure that this behavior is acceptable for your document before you proceed. - The
NumberingFieldsProvideris essential for correct page number calculation in the TOC. Set it before you update the fields.

