Hi,
Our code is developed around PPT and we use Presentation throughout. A request came up to provide the output as PPTX - which we can do as such:
var pptx = new PresentationEx(presentationMemStream);
pptx.Write(@“c:\temp\trial.pptx”);
This works fine and produces the PPTX as required. However there are two bugs, one of which I have worked around - the other not and for which I am seeking assistance.
a) Bullet points appearing
When I add text to the PPT as follows:
TextFrame textFrame = shape.AddTextFrame(text);
All textboxes will be a list in my result. The work around is as follows:
TextFrame textFrame = shape.AddTextFrame("");
textFrame.Text = text;
Tested and ‘worked around’ on Aspose.Slides 6.5.0
b) Drop shadows appearing
For some weird reason all text in the document gets the drop shadow property set. I have explicitly set the drop shadow to FALSE on the containing paragraph, but that has no effect whatsoever: all items are still rendered with a drop shadow in the resulting PPTX.
Is this a known bug or am I doing something wrong?
Find the input and output attached.