What's New in Document Solutions for Word v8
v8 -December 11, 2024
Enhancements When Working with Fields
Fields in Microsoft Word act as dynamic placeholders for data that can automatically update based on certain conditions, eliminating the need for manual updates and helping create consistently formatted, professional documents. Fields are not only useful for displaying dynamic data but can also be customized and controlled by adjusting their arguments (parameters) and switches (modifiers) to modify their behavior and output.
In the v8.0 release, DsWord has added support for working with and updating the following fields:
- PAGE - The PAGE field retrieves the number of the current page.
- PAGEREF - The PAGEREF field inserts the number of the page containing the bookmark for a cross-reference.
- SECTION - The SECTION field retrieves the number of the current section.
- SECTIONPAGES - The SECTIONPAGES field retrieves the number of the current page within the current section
- SEQ - The SEQ field sequentially numbers chapters, tables, figures, and other user-defined lists of items in a document.
- TC - The TC field defines the text and page number for a table of contents (including a table of figures) entry, which is used by a TOC field.
- TOC - The TOC field builds a table of contents (which can also be a table of figures) using the entries specified by TC fields, their heading levels, specified styles and inserts that table at this place in the document.
Each of the fields listed above has a corresponding …FieldOptions class (living in the GrapeCity.Documents.Word.Fields namespace) that provides strong typed access to read and write arguments and switches of specific field type. The FieldFormatOptions class represents a base class for ...FieldOptions classes that supports the formatting properties.
To update (recalculate) the fields, use the new GcWordDocument.UpdateFields() method, or the Update() method on a specific field. This allows you to include the updated field results in the DOCX or in export to PDF or images.
Have a look on the detailed API for each Field type in the links for each field above.
Following code helps to add TOC to a Word Document at the second page using TOCFieldOptions class.
var doc = new GcWordDocument();
doc.Load("Annual Financial Report.docx");
var para6 = doc.Body.Paragraphs[6];
var newSection = para6.AddSectionBreak();
var tocPara = newSection.AddParagraph();
var options = new TocFieldOptions(doc);
options.EntryFormatting.CreateHyperlink = true;
// build TOC with paragraphs that formatted only 'Heading 1' or 'Heading 2' or 'Heading 3' styles
foreach (TocStyleLevel style in options.Styles)
{
switch (style.Level)
{
case OutlineLevel.Level1:
case OutlineLevel.Level2:
case OutlineLevel.Level3:
style.Collect = true;
break;
default:
style.Collect = false;
break;
}
}
var toc = tocPara.AddComplexField(options);
toc.Update();
doc.Save("ReportWithTOC.docx");
using (var layout = new GcWordLayout(doc))
{
// save the whole document as PDF
layout.SaveAsPdf("ReportWithTOC.pdf", null, new PdfOutputSettings() { CompressionLevel = CompressionLevel.Fastest });
}
DsWordLayout package is now merged into DsWord package
From v8 onwards, the DsWordLayout package (that enables saving Word documents to PDF or images) has been merged to DsWord package. The changes are backwards compatible, any user code will continue to work in v8.0, the only change is the need to remove references to DsWordLayout from user projects as it is no longer required.
Updates
Related Links