My document has DOCPROPERTY fields and I am trying to update them (Title, SubTitle, etc.).
Dim title As String = "New Title"
Dim subTitle As String = "New Sub Title"
Dim document = DocumentModel.Load(inputFile)
document.DocumentProperties.BuiltIn(BuiltInDocumentProperty.Title) = title
document.DocumentProperties.Custom("SubTitle") = subTitle
document.Save(outputFile)
But the final document does not show the updated values, I can see them only after refreshing them in MS Word by pressing F9. How can I refresh them with GemBox.Document?
Also I have some DOCVARIABLE fields which are updated with macros. Can I update them with GemBox.Document?
UPDATE 02-01-2020:
The current latest bugfix version for GemBox.Document introduced API support for
Field.Update
, so from now own the updating of both DOCPROPERTY and DOCVARIABLE fields can be simplified like the following:UPDATE 11-10-2017:
The current latest bugfix version for GemBox.Document introduced API support for
DocumentModel.Variables
, so from now own the DOCVARIABLE fields can be updated, for example with something like the following:ORIGINAL:
GemBox.Document does not automatically update DOCPROPERTY fields when saving to DOCX file. However, they are updated when saving to PDF, XPS or image format and when printing.
Nevertheless, you can update them with something like the following:
Also regarding the DOCVARIABLE fields, these ones cannot currently be updated with GemBox.Document.