Some BuiltInDocumentProperties missed while saving as DOC and PDF

Aspose.Words v6.0.0.0
BuiltInDocumentProperties “Title” and “Author” not present if saving as PDF; “NameOfApplication” - not present if saving as PDF and not present if saving as DOC. Screenshots of documents properties included.
C# code:

Document d1 = new Document();
d1.BuiltInDocumentProperties.Title = "Title";
d1.BuiltInDocumentProperties.Author = "Author";
d1.BuiltInDocumentProperties.NameOfApplication = "Application";
d1.Save("d1.doc");
d1.Save("d1.pdf");

Hi
Thanks for your request.

  1. Regarding PDF. This is known issue #6721 in our defect database. Note: this is only 1.0 version of our Rendering engine so some features are not supported yet.
  2. Application Name is displayed properly. I used the following code.
Document doc = new Document();
doc.BuiltInDocumentProperties.Author = "Alex";
doc.BuiltInDocumentProperties.Title = "my title";
doc.BuiltInDocumentProperties.NameOfApplication = "my app";
doc.Save(@"Test043\out.doc");

Attached is screenshot of Document properties.
Best regards.

The issues you have found earlier (filed as 6721) have been fixed in this update.