Hi,
Hello
Thanks for your request. Currently Aspose.Words cannot update TITLE/AUTHOR field in the document. However, Aspose.Words can update DOCPROPERTY fields. So you can use it instead TITLE/AUTHOR field. Here is field code:
{ DOCPROPERTY Title \* MERGEFORMAT }
u1:p</u1:p>
You will be notified as soon as it is supported.
Also please see the following simple code:
// Open a sample document in Aspose.Words.
Document doc = new Document("C:\\Temp\\in3.docx");
DocumentBuilder builder = new DocumentBuilder(doc);
doc.BuiltInDocumentProperties.Title = "MyTitle";
builder.InsertField("DOCPROPERTY Title \\* MERGEFORMAT");
doc.UpdateFields();
doc.Save("C:\\Temp\\out.docx");
The same for AUTHOR field.
Best regards,
Hello
Thanks for your request. Unfortunately, currently Aspose.Words cannot update TITLE/AUTHOR field in the document. You will be notified as soon as this feature is supported.
Best regards,
The issues you have found earlier (filed as WORDSNET-4680) have been fixed in this .NET update and in this Java update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(2)