Hi
Much like the BuiltInDocumentProperties for Word and Excel how do I get details like creation date, modification date, author etc. for a project file?
Thanks
Simon
Hi
Hi Simon,
Thank you for contacting Aspose support team.
Prj class can be used to retrieve the required information as shown in the following example. You may please visit here to get more project properties.
Project proj = new Project();
Console.WriteLine(proj.Get(Prj.CreationDate));
Console.WriteLine(proj.Get(Prj.Author));
Excellent thanks.
You are welcome.