Last modified user name

I noticed that if any changes are made in the Word document by Aspose, the word file info is not displaying Aspose as the “Last modified By user” in the File’s info. Rather it displays the user name who last modified the document previous to Aspose which is not correct.
Previously I used to process my document using a tool named “Interop”. If there are any edits made by Interop in the word document, we were able to see the last modified username as “Amazon” which make sense. I am wondering why we do not get any username when Aspose makes edits on the word document.

@vasudevan You can set the Last Modified by user name using BuiltInDocumentProperties.LastSavedBy property. For example see the following code:

Document doc = new Document(@"C:\Temp\in.docx");
doc.BuiltInDocumentProperties.LastSavedBy = "Aspose.Words";
doc.Save(@"C:\Temp\out.docx");