Cell background color table

Is there a way to set the background color of a cell? I can't find anything in the documentation

Hi,

Which WX control does this concern exactly?

TMS FNC WX Doc

Hi,

You could achieve this with the following snippet:

   Table := Section.AddTable;
  Row := Table.AddRow;
  Cell := Row.AddCell;
  Paragraph := Cell.AddParagraph;
  Paragraph.AddText('TEST');
  Paragraph.Shading.ShadingType := TTMSFNCWXDocxShadingType.stSolid;
  Paragraph.Shading.Color := 'red';