Table Cell color

Can you color in individual cells of a table

Yes, you can do it with the following code.

//Set the background color of the cell to blue
Aspose.Slides.Cell cell = table.GetCell(1, 1);
cell.FillFormat.Type = FillType.Solid;
cell.FillFormat.ForeColor = Color.Blue;