IPptOptions

All Implemented Interfaces: com.aspose.slides.ISaveOptions

public interface IPptOptions extends ISaveOptions

Provides options that control how a presentation is saved in PPT format.

Methods

MethodDescription
getRootDirectoryClsid()Represents the object class GUID (CLSID) that is stored in the root directory entry.
setRootDirectoryClsid(UUID value)Represents the object class GUID (CLSID) that is stored in the root directory entry.

getRootDirectoryClsid()

public abstract UUID getRootDirectoryClsid()

Represents the object class GUID (CLSID) that is stored in the root directory entry. Can be used for COM activation of the document’s application. The default value is ‘64818D11-4F9B-11CF-86EA-00AA00B929E8’ that corresponds to ‘Microsoft Powerpoint.Slide.8’.


Presentation pres = new Presentation();
 try {
     PptOptions pptOptions = new PptOptions();

     /// set CLSID to 'Microsoft Powerpoint.Show.8'
     pptOptions.setRootDirectoryClsid(UUID.fromString("64818D10-4F9B-11CF-86EA-00AA00B929E8"));

     pres.save("pres.ppt", SaveFormat.Ppt, pptOptions);
 } finally {
     if (pres != null) pres.dispose();
 }

Returns: java.util.UUID

setRootDirectoryClsid(UUID value)

public abstract void setRootDirectoryClsid(UUID value)

Represents the object class GUID (CLSID) that is stored in the root directory entry. Can be used for COM activation of the document’s application. The default value is ‘64818D11-4F9B-11CF-86EA-00AA00B929E8’ that corresponds to ‘Microsoft Powerpoint.Slide.8’.


Presentation pres = new Presentation();
 try {
     PptOptions pptOptions = new PptOptions();

     /// set CLSID to 'Microsoft Powerpoint.Show.8'
     pptOptions.setRootDirectoryClsid(UUID.fromString("64818D10-4F9B-11CF-86EA-00AA00B929E8"));

     pres.save("pres.ppt", SaveFormat.Ppt, pptOptions);
 } finally {
     if (pres != null) pres.dispose();
 }

Parameters:

ParameterTypeDescription
valuejava.util.UUID