When I try to convert a docx to pdf with:
using (Converter converter = new Converter(wordFile, () => new WordProcessingLoadOptions
{
UpdateFields= true
}))
{
PdfConvertOptions options = new PdfConvertOptions();
converter.Convert(pdfFile, options);
}
Field Codes like {FILENAME \p}
are not loaded and converted to text
When this option is on default/disabled you get the stored information but not the updated one.