Hello,
Please save (create) PPT file from another PPT file. If there is a bullet lists with the ‘Increase List Level’ + customized indent, the output in PPT (file TextFrameLevelNew.ppt) seems to remove the indent completely. <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
In a attached sample:
Test1 is using button ‘Increase List Level’;
Tesrt2 is using manual indentation 1.3 cm in Paragraph dialog.
string fileName = GetPathFile() + "TextFrameLevel.ppt";
string fileNameNew = GetPathFile() + "TextFrameLevelNew.ppt";
Presentation pres = new Presentation(fileName);
Slide fstSlide = pres.GetSlideByPosition(1);
pres.Save(fileNameNew, Aspose.Slides.Export.SaveFormat.Ppt);
Thank you!