get_RootDirectoryClsid()

PptOptions::get_RootDirectoryClsid() method

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’.

System::Guid Aspose::Slides::Export::PptOptions::get_RootDirectoryClsid() override

Remarks

System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>();

System::SharedPtr<PptOptions> pptOptions = System::MakeObject<PptOptions>();

pptOptions->set_RootDirectoryClsid(System::Guid(u"64818D10-4F9B-11CF-86EA-00AA00B929E8"));

pres->Save(u"pres.ppt", Aspose::Slides::Export::SaveFormat::Ppt, pptOptions);

See Also