Set backgroundColor for a cell in table

Hi

I'm using table class in aspose. I want to know how can I set backgroundColor for a cell in table.

Thanks.

Cell cell = table.GetCell(…);

cell.FillFormat.Type = FillType.Solid;

cell.FillFormat.ForeColor = Color.Red;