Hi,
we are using aspose slide version 15.9. Please let me know how to set ITextFrame background color.
Thanks.
Hi,
Hi,
Please find below my code which is not working:
Hi,
Presentation Pres = new
Presentation();<o:p></o:p>
ISlide Sld = Pres.Slides[0];
ITable tbl = Sld.Shapes.AddTable(0, 0, new double[] { 250 }, new double[] { 50, 50, 50, 50, 50, 50 });
tbl[0, 1].TextFrame.Text = "Custom Text";
ICell cell = tbl[0, 1];
cell.FillFormat.FillType = FillType.Solid;
cell.FillFormat.SolidFillColor.Color = Color.Gray;
Pres.Save(@"D:\Test.pptx", SaveFormat.Pptx);