PptOptions

Inheritance: java.lang.Object, com.aspose.slides.SaveOptions

All Implemented Interfaces: com.aspose.slides.IPptOptions, java.lang.Cloneable

public class PptOptions extends SaveOptions implements IPptOptions, Cloneable

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

Constructors

ConstructorDescription
PptOptions()

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.

PptOptions()

public PptOptions()

getRootDirectoryClsid()

public final 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 final 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