GroupDocsGists
10/24/2017 - 11:31 AM

Examples-GroupDocs.Metadata-for-Java

Examples-GroupDocs.Metadata-for-Java

// initialize PptFormat
PptFormat pptFormat = new PptFormat(Common.mapSourceFilePath(path));
// get document properties
PptMetadata properties = pptFormat.getDocumentProperties();
// get author
System.out.printf("Author: %s", properties.getAuthor());
// get company
System.out.printf("Company: %s", properties.getCompany());
// get created date of the document
System.out.printf("Created Date: %s", properties.getCreatedTime());