I would expect the code below to result in a table with a solid red fill color. This was the case through version 24.3.0. Versions 24.4.0 through 24.6.0 produce a table with no fill color.
using System.Drawing;
using Aspose.Slides;
using Aspose.Slides.Export;
var presentation = new Presentation();
var slide = presentation.Slides[0];
var table = slide.Shapes.AddTable(50, 50, [100d], [100d]);
table[0, 0].CellFormat.FillFormat.FillType = FillType.NoFill;
table.FillFormat.FillType = FillType.Solid;
table.FillFormat.SolidFillColor.Color = Color.Red;
presentation.Save("output.pptx", SaveFormat.Pptx);
The zip attachment contains sample outputs for 24.3.0 and 24.6.0 as well as the project that reproduces the issue.
AsposeSlidesTableFillColor.zip (48.7 KB)
@mdaniels-fds
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): SLIDESNET-44608
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.
This issue appears to have been corrected in 24.7.0.
@mdaniels-fds,
Yes, you are right. The issue has been resolved in Aspose.Slides for .NET 24.7. By mistake, the issue ticket was not included in the Release Notes, and you were not notified of the fix. We apologize for any inconvenience caused.
The issues you found earlier (filed as SLIDESNET-44608) have been fixed in Aspose.Slides for .NET 24.8 (ZIP, MSI, NuGet, Cross-platform).
You can check all fixes on the Release Notes page.
You can also find the latest version of our library on the Product Download page.