Menu

Access Properties of Protected Presentation

Shoaib

Aspose.Slides

//Accessing the Document Properties of a Password Protected Presentation without Password
//creating instance of load options to set the presentation access password
com.aspose.slides.LoadOptions loadOptions = new com.aspose.slides.LoadOptions();

//Setting the access password to null
loadOptions.setPassword (null);

//Setting the access to document properties
loadOptions.setOnlyLoadDocumentProperties (true);

//Opening the presentation file by passing the file path and load options to the constructor of Presentation class
Presentation pres = new Presentation( "data/AsposeProtection-PropAccess.pptx", loadOptions);

//Getting Document Properties
IDocumentProperties docProps = pres.getDocumentProperties();

System.out.println("Properties Count: " + docProps.getCount());

Download Source Code


Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.